:root {
    --header-bg: #0d1321;
    --text-primary: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #1a1f2e;
}

.site-header {
    background-color: var(--header-bg);
}

.header-container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    height: 132px;
}

.logo-wrapper {
    flex-shrink: 0;
    padding-left: 1.5rem;
}

.logo {
    height: 100px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo {
        height: 75px;
    }
    
    .logo-wrapper {
        padding-left: 1rem;
    }
}

main {
    min-height: calc(100vh - 132px);
}

.hero-section {
    background: linear-gradient(to bottom, #0d1321, #232528);
    padding: 4rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    padding-left: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.hero-btn-primary {
    background-color: #f3fd32;
    color: #000;
    box-shadow: 0 4px 15px rgba(243, 253, 50, 0.3);
}

.hero-btn-primary:hover {
    background-color: #e8f227;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 253, 50, 0.4);
}

.hero-btn-secondary {
    background-color: #3a3f47;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-btn-secondary:hover {
    background-color: #454b54;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-image {
    flex: 0 0 auto;
    max-width: 500px;
    padding-right: 1.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0;
    }
    
    .hero-content {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

.bonus-section {
    background-color: #0f0f0f;
    padding: 4rem 0;
}

.bonus-container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.bonus-image {
    flex: 0 0 auto;
    max-width: 400px;
    padding-left: 1.5rem;
}

.bonus-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.bonus-content {
    flex: 1;
    padding-right: 1.5rem;
}

.bonus-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.bonus-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.bonus-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.bonus-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .bonus-section {
        padding: 3rem 0;
    }
    
    .bonus-container {
        gap: 3rem;
    }
    
    .bonus-title {
        font-size: 2rem;
    }
    
    .bonus-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 2rem 0;
    }
    
    .bonus-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .bonus-content {
        padding-left: 1rem;
        padding-right: 1rem;
        order: 1;
    }
    
    .bonus-image {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        align-self: center;
        order: 2;
    }
    
    .bonus-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .bonus-text {
        text-align: left;
    }
    
    .bonus-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}

.site-footer {
    margin-top: auto;
}

.footer-top {
    background-color: #151515;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.footer-logo {
    flex: 0 0 auto;
    padding-left: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-content {
    flex: 1;
    padding-right: 1.5rem;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.footer-content a {
    color: #f3fd32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #e8f227;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #252427;
    padding: 1.5rem 0;
}

.footer-bottom .footer-container {
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .footer-top {
        padding: 2.5rem 0;
    }
    
    .footer-container {
        gap: 2rem;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .footer-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 2rem 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .footer-logo {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-content p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom .footer-container {
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        text-align: left;
    }
} 