/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Fire particles background */
#fire-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.fire-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 50%, transparent 70%);
    border-radius: 50%;
    animation: fireFloat 8s infinite ease-in-out;
    opacity: 0;
}

@keyframes fireFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

/* Smoke effects */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.smoke {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: smokeMove 20s infinite linear;
}

.smoke1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.smoke2 {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.smoke3 {
    top: 40%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes smokeMove {
    0% {
        transform: translateX(-50px) translateY(0) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translateX(50px) translateY(-30px) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translateX(-50px) translateY(0) scale(0.8);
        opacity: 0.3;
    }
}

/* Main container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 50px;
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.fire-badge {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 50%, #e74c3c 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: fireGlow 3s ease-in-out infinite alternate;
}

@keyframes fireGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 107, 53, 0.6),
            0 0 60px rgba(255, 107, 53, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 
            0 0 50px rgba(255, 107, 53, 0.8),
            0 0 100px rgba(255, 107, 53, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.badge-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
        border-color: rgba(255, 107, 53, 0.5);
    }
    50% {
        border-color: rgba(247, 147, 30, 0.7);
    }
    100% {
        transform: rotate(360deg);
        border-color: rgba(255, 107, 53, 0.5);
    }
}

.fire-icon {
    font-size: 50px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: flameFlicker 2s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
    0% {
        transform: scale(1) rotate(-2deg);
        filter: brightness(1);
    }
    100% {
        transform: scale(1.1) rotate(2deg);
        filter: brightness(1.2);
    }
}

.main-title {
    font-family: 'Goldman', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4);
}

.pgd {
    display: block;
    color: #ff6b35;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.bovec {
    display: block;
    color: #f7931e;
    font-size: 3rem;
    margin-top: -10px;
    animation: titleGlow 2s ease-in-out infinite alternate-reverse;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 107, 53, 0.8),
            0 0 20px rgba(255, 107, 53, 0.6),
            0 0 30px rgba(255, 107, 53, 0.4);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 107, 53, 1),
            0 0 30px rgba(255, 107, 53, 0.8),
            0 0 40px rgba(255, 107, 53, 0.6);
    }
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement {
    text-align: center;
}

.coming-soon {
    font-family: 'Goldman', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Loading section */
.loading-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.loading-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.loading-percentage {
    font-family: 'Goldman', sans-serif;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.3rem;
}

.progress-container {
    position: relative;
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    height: 16px;
    width: 0%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.6), transparent);
    border-radius: 10px;
    filter: blur(4px);
    transition: width 0.3s ease;
}

.loading-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.stage.active {
    opacity: 1;
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.stage.completed {
    opacity: 1;
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.stage i {
    font-size: 2rem;
    color: #ff6b35;
}

.stage.completed i {
    color: #27ae60;
}

.stage span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Features preview */
.features-preview {
    text-align: center;
}

.features-preview h3 {
    font-family: 'Goldman', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff6b35;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-family: 'Goldman', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Newsletter section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.newsletter-section h3 {
    font-family: 'Goldman', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ff6b35;
}

.input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
}

.input-group input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.input-group input::placeholder {
    color: #cccccc;
}

.input-group button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    margin-top: 50px;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.footer p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Emergency button */
.emergency-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    animation: emergencyPulse 2s ease-in-out infinite;
    z-index: 1000;
    transition: all 0.3s ease;
}

.emergency-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
}

@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.8), 0 0 0 20px rgba(231, 76, 60, 0.1);
    }
}

.emergency-button i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.emergency-button span {
    font-size: 1.1rem;
    font-family: 'Goldman', sans-serif;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .bovec {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .fire-badge {
        width: 80px;
        height: 80px;
    }
    
    .fire-icon {
        font-size: 30px;
    }
    
    .container {
        padding: 15px;
    }
    
    .loading-section,
    .newsletter-section {
        padding: 25px;
    }
    
    .input-group {
        flex-direction: column;
        align-items: center;
    }
    
    .input-group input,
    .input-group button {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .loading-stages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .emergency-button i {
        font-size: 1.2rem;
    }
    
    .emergency-button span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .loading-stages {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .bovec {
        font-size: 1.5rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}
