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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #171a20;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: linear-gradient(135deg, #1f2229 0%, #171a20 100%);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #fef34b 0%, #ede23a 100%);
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-brand {
    color: #fef34b;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.mobile-actions {
    display: none;
}

.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    transition: 0.3s;
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
}

.drawer-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1f2229 0%, #171a20 100%);
    z-index: 1002;
    transition: 0.3s;
    overflow-y: auto;
    box-shadow: 2px 0 30px rgba(0, 0, 0, 0.7);
}

.drawer-menu.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(212, 255, 0, 0.2);
}

.drawer-header h3 {
    color: #fef34b;
    font-size: 22px;
}

.drawer-close {
    background: none;
    border: none;
    color: #fef34b;
    font-size: 36px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.drawer-close:hover {
    transform: rotate(90deg);
}

.drawer-content {
    padding: 10px 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.drawer-link:hover {
    background: rgba(212, 255, 0, 0.1);
    border-left-color: #fef34b;
    color: #fef34b;
}

.drawer-icon {
    font-size: 24px;
    width: 30px;
}

.desktop-header {
    background: linear-gradient(135deg, #1f2229 0%, #171a20 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    color: #fef34b;
    text-decoration: none;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-accent {
    color: #ede23a;
}

.main-navigation {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #fef34b 0%, #ede23a 100%);
    transition: 0.3s;
}

.nav-link:hover {
    color: #fef34b;
}

.nav-link:hover::before {
    width: 100%;
}

.auth-section {
    display: flex;
    gap: 15px;
}

.btn-login-desktop,
.btn-register-desktop {
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}

.btn-login-desktop {
    background: #ee5e58;
    border: none;
    color: #ffffff;
}

.btn-login-desktop:hover {
    background: #d94d47;
    transform: translateY(-2px);
}

.btn-register-desktop {
    background: #fef34b;
    color: #171a20;
    border: none;
    font-weight: 900;
}

.btn-register-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 243, 75, 0.5);
    background: #ede23a;
}

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2d35 0%, #1f2229 50%, #171a20 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 255, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    padding: 80px 0;
}

.hero-label {
    display: inline-block;
    background: rgba(212, 255, 0, 0.15);
    color: #fef34b;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 255, 0, 0.3);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, #fef34b 0%, #ede23a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 96px;
}

.hero-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: 0.3s;
}

.btn-hero-primary {
    background: #fef34b;
    color: #171a20;
    box-shadow: 0 8px 25px rgba(254, 243, 75, 0.4);
    font-weight: 900;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(254, 243, 75, 0.6);
    background: #ede23a;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid #ee5e58;
    color: #ee5e58;
}

.btn-hero-secondary:hover {
    background: #ee5e58;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #fef34b 0%, #ede23a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #171a20;
    font-weight: bold;
}

.promo-banner {
    margin-bottom: 60px;
}

.promo-content {
    background: linear-gradient(135deg, #2a2d35 0%, #1f2229 100%);
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 2px solid rgba(212, 255, 0, 0.3);
}

.promo-icon {
    font-size: 64px;
}

.promo-text {
    flex: 1;
}

.promo-text h3 {
    font-size: 28px;
    color: #fef34b;
    margin-bottom: 8px;
}

.promo-text p {
    color: #cccccc;
    font-size: 16px;
}

.promo-btn {
    padding: 15px 35px;
    background: #fef34b;
    color: #171a20;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 900;
    transition: 0.3s;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 243, 75, 0.5);
    background: #ede23a;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 48px;
    color: #fef34b;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title p {
    font-size: 18px;
    color: #999999;
}

.section-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.tab-btn {
    padding: 12px 30px;
    background: rgba(212, 255, 0, 0.1);
    border: 2px solid rgba(212, 255, 0, 0.3);
    color: #fef34b;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #fef34b;
    color: #171a20;
    border-color: transparent;
    font-weight: 900;
}

.games-section {
    margin-bottom: 80px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-card {
    background: linear-gradient(135deg, #1f2229 0%, #171a20 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(212, 255, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 255, 0, 0.3);
    border-color: rgba(212, 255, 0, 0.5);
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.jackpot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fef34b;
    color: #171a20;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    z-index: 2;
}

.game-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: 0.3s;
}

.game-card:hover .game-actions {
    opacity: 1;
}

.action-play,
.action-demo {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.action-play {
    background: #fef34b;
    color: #171a20;
    font-weight: 900;
}

.action-play:hover {
    background: #ede23a;
}

.action-demo {
    background: transparent;
    border: 2px solid #ee5e58;
    color: #ee5e58;
}

.action-demo:hover {
    background: #ee5e58;
    color: #ffffff;
}

.game-details {
    padding: 20px;
}

.game-details h3 {
    color: #fef34b;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.game-provider {
    color: #999999;
    font-size: 14px;
}

.load-more {
    text-align: center;
}

.btn-load-more {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #ee5e58;
    color: #ee5e58;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-load-more:hover {
    background: #ee5e58;
    color: #ffffff;
    transform: translateY(-2px);
}

.bonus-section {
    margin-bottom: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2229 0%, #171a20 100%);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: linear-gradient(135deg, #2a2d35 0%, #1f2229 100%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 2px solid rgba(212, 255, 0, 0.2);
    position: relative;
}

.bonus-card.featured {
    border-color: #fef34b;
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fef34b;
    color: #171a20;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 900;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 255, 0, 0.3);
}

.bonus-number {
    font-size: 18px;
    color: #999999;
    margin-bottom: 15px;
    font-weight: 700;
}

.bonus-percentage {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #fef34b 0%, #ede23a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 25px;
}

.bonus-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.bonus-list li {
    color: #cccccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fef34b;
    font-weight: bold;
}

.bonus-action {
    display: inline-block;
    padding: 15px 40px;
    background: #ee5e58;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 900;
    transition: 0.3s;
}

.bonus-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 94, 88, 0.5);
    background: #d94d47;
}

.live-casino-section {
    margin-bottom: 80px;
}

.live-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.live-game {
    background: linear-gradient(135deg, #1f2229 0%, #171a20 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(212, 255, 0, 0.2);
}

.live-game:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 255, 0, 0.3);
}

.live-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
}

.live-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.pulse {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-content {
    padding: 30px;
}

.live-content h3 {
    font-size: 26px;
    color: #fef34b;
    margin-bottom: 8px;
}

.live-content p {
    color: #999999;
    margin-bottom: 20px;
}

.live-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: #cccccc;
    font-size: 14px;
}

.live-join {
    display: block;
    padding: 15px;
    background: #fef34b;
    color: #171a20;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 900;
    transition: 0.3s;
}

.live-join:hover {
    box-shadow: 0 8px 25px rgba(254, 243, 75, 0.5);
    transform: translateY(-2px);
    background: #ede23a;
}

.footer {
    background: linear-gradient(135deg, #171a20 0%, #050b14 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 255, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: #fef34b;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-license {
    background: rgba(212, 255, 0, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-block;
}

.footer-license span {
    color: #fef34b;
    font-size: 14px;
    font-weight: 600;
}

.footer-links h4 {
    color: #fef34b;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    padding: 8px 0;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fef34b;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999999;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods span {
    background: rgba(212, 255, 0, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    color: #fef34b;
    font-size: 13px;
    font-weight: 600;
}

.sticky-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2229 0%, #171a20 100%);
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(212, 255, 0, 0.2);
}

.bottom-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
}

.bottom-bar-btn.login {
    background: #ee5e58;
    color: #ffffff;
}

.bottom-bar-btn.login:hover {
    background: #d94d47;
}

.bottom-bar-btn.register {
    background: #fef34b;
    color: #171a20;
    font-weight: 900;
}

.bottom-bar-btn.register:hover {
    background: #ede23a;
}

.bottom-bar-btn span {
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .desktop-header {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    body {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .sticky-bottom-bar {
        display: flex;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-highlight {
        font-size: 64px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-tabs {
        flex-wrap: wrap;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .live-games {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-highlight {
        font-size: 48px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .bonus-percentage {
        font-size: 56px;
    }
}

.custom-content-section {
    margin-bottom: 80px;
}

.custom-content-section .content-wrapper {
    background: #1f2229;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px dashed rgba(254, 243, 75, 0.3);
}

.custom-content-section .content-wrapper p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    text-align: center;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: #fef34b;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-wrapper h1 { font-size: 48px; }
.content-wrapper h2 { font-size: 42px; }
.content-wrapper h3 { font-size: 36px; }
.content-wrapper h4 { font-size: 30px; }
.content-wrapper h5 { font-size: 24px; }
.content-wrapper h6 { font-size: 20px; }

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    text-align: left;
    margin: 20px 0;
    padding-left: 40px;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: #cccccc;
}

.content-wrapper a {
    color: #fef34b;
    text-decoration: none;
    transition: 0.3s;
}

.content-wrapper a:hover {
    color: #ee5e58;
    text-decoration: underline;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
}

.content-wrapper blockquote {
    border-left: 4px solid #fef34b;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #cccccc;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.content-wrapper table th,
.content-wrapper table td {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.content-wrapper table th {
    background: #171a20;
    color: #fef34b;
    font-weight: bold;
}

.content-wrapper table tr:hover {
    background: rgba(254, 243, 75, 0.05);
}

.content-wrapper code {
    background: #171a20;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fef34b;
    font-family: monospace;
}

.content-wrapper pre {
    background: #171a20;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 20px 0;
}

.content-wrapper pre code {
    background: none;
    padding: 0;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #171a20;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 26, 32, 0.7) 0%, rgba(23, 26, 32, 0.4) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.slide-label {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-slide-primary,
.btn-slide-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-slide-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-slide-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.btn-slide-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-slide-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    width: 30px;
    border-radius: 6px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.logo-img {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
}

.mobile-logo {
    height: 35px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.custom-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1d24 0%, #171a20 100%);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 16px;
}

.content-wrapper h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    position: relative;
    padding-bottom: 10px;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.content-wrapper h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.content-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-slide-primary,
    .btn-slide-secondary {
        width: 200px;
        text-align: center;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 350px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
}
