* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('img/background.jpg') center/cover no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(139,69,19,0.3) 50%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    animation: logoSpin 3s linear infinite;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { filter: drop-shadow(0 0 5px #ffd700); }
    to { filter: drop-shadow(0 0 20px #ffd700); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.welcome-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
}

.welcome-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.logo-animation {
    margin-bottom: 2rem;
}

.welcome-logo {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #ffd700;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
    -webkit-text-stroke: 3px #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffd700;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #00a8ff);
}

.social-btn.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.floating-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0.7;
}

.floating-img.img1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.floating-img.img2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation: float2 8s ease-in-out infinite;
}

.floating-img.img3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

.about-section {
    padding: 100px 0;
    background: rgba(0,0,0,0.8);
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    -webkit-text-stroke: 2px #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 900;
    -webkit-text-stroke: 1px #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.about-text p {
    font-size: 1.44rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    flex: 1;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.2);
}

.feature i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.56rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-weight: 900;
    -webkit-text-stroke: 1px #ffd700;
}

.feature p {
    font-size: 1.32rem;
    font-weight: 400;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.story-section {
    padding: 100px 0;
    background: rgba(139,69,19,0.1);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.story-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-card.reverse {
    direction: rtl;
}

.story-card.reverse .story-text {
    direction: ltr;
}

.story-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.story-img:hover {
    transform: scale(1.05);
}

.story-text h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 900;
    -webkit-text-stroke: 1px #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.story-text p {
    font-size: 1.32rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer {
    background: rgba(0,0,0,0.9);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:first-child {
    background: linear-gradient(45deg, #0088cc, #00a8ff);
}

.footer-social-btn:last-child {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features {
        flex-direction: column;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-img {
        display: none;
    }
    
    .welcome-logo {
        width: 240px;
        height: 240px;
    }
    
    .about-text h3,
    .story-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text p,
    .story-text p {
        font-size: 1.08rem;
    }
    
    .feature h4 {
        font-size: 1.2rem;
    }
    
    .feature p {
        font-size: 0.96rem;
    }
} 