@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.5;
}

.cw-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cw-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cw-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cw-logo-img {
    height: 42px;
    width: auto;
}

.cw-nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.cw-nav-links li a {
    color: #1e293b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cw-nav-links li a:hover,
.cw-nav-links li a.cw-nav-active {
    color: #f5a623;
}

.cw-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.cw-hamburger span {
    width: 25px;
    height: 2px;
    background: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
}

.cw-nav-mobile {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: 0.3s ease;
    z-index: 999;
    list-style: none;
}

.cw-nav-mobile.active {
    left: 0;
}

.cw-nav-mobile li {
    margin: 20px 0;
}

.cw-nav-mobile li a {
    color: #1e293b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.cw-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.cw-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.cw-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    color: white;
}

.cw-hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.5);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #f5a623;
    margin-bottom: 25px;
}

.cw-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cw-hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
}

.cw-btn-primary {
    display: inline-block;
    padding: 14px 38px;
    background: #f5a623;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    border: none;
    cursor: pointer;
}

.cw-btn-primary:hover {
    transform: translateY(-3px);
    background: #e09512;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.cw-btn-secondary {
    display: inline-block;
    padding: 14px 38px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    margin-left: 15px;
}

.cw-btn-secondary:hover {
    border-color: #f5a623;
    background: rgba(245, 166, 35, 0.1);
}

.cw-stats-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.cw-stats-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cw-stat {
    text-align: center;
}

.cw-stat span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #f5a623;
}

.cw-stat small {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.cw-warning {
    margin: 40px auto;
    max-width: 1100px;
    background: #fff8ed;
    border-left: 5px solid #f5a623;
    border-radius: 12px;
    padding: 20px 30px;
}

.cw-warning-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cw-warning-icon {
    font-size: 45px;
    width: 65px;
    height: 65px;
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.cw-warning-content {
    flex: 1;
}

.cw-warning-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.cw-warning-content p {
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.cw-warning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.cw-warning-tags span {
    background: rgba(245, 166, 35, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #f5a623;
}

.cw-section {
    padding: 80px 0;
}

.cw-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.cw-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1e293b;
}

.cw-section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 50px;
}

.cw-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 50px;
}

.cw-featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.cw-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cw-featured-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.cw-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.cw-featured-card:hover .cw-featured-image img {
    transform: scale(1.05);
}

.cw-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 166, 35, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.cw-featured-card:hover .cw-featured-overlay {
    opacity: 1;
}

.cw-featured-play {
    background: white;
    color: #f5a623;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.cw-featured-play:hover {
    transform: scale(1.05);
    background: #f5a623;
    color: white;
}

.cw-featured-info {
    padding: 18px;
    text-align: center;
}

.cw-featured-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e293b;
}

.cw-featured-info p {
    font-size: 13px;
    color: #64748b;
}

.cw-gallery {
    padding: 60px 0;
    background: white;
}

.cw-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.cw-gallery-item {
    background: #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.cw-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cw-gallery-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.cw-gallery-item span {
    display: block;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    background: white;
}

.cw-gallery-footer {
    text-align: center;
    margin-top: 35px;
}

.cw-view-link {
    display: inline-block;
    color: #f5a623;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #f5a623;
    padding-bottom: 4px;
    transition: 0.3s;
}

.cw-view-link:hover {
    color: #e09512;
    letter-spacing: 0.5px;
}

.cw-mission {
    padding: 80px 0;
    background: #f1f5f9;
}

.cw-mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cw-mission-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.cw-mission-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.cw-mission-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cw-mission-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cw-mission-stat span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #f5a623;
}

.cw-mission-stat small {
    color: #64748b;
    font-size: 13px;
}
.cw-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff3f8 100%);
}

.cw-contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.cw-contact-left {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cw-contact-left-inner {
    max-width: 380px;
}

.cw-contact-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #f5a623;
    margin-bottom: 25px;
}

.cw-contact-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.cw-contact-left p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cw-contact-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cw-contact-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cw-contact-feature span {
    font-size: 28px;
}

.cw-contact-feature div {
    display: flex;
    flex-direction: column;
}

.cw-contact-feature strong {
    font-size: 15px;
    margin-bottom: 3px;
}

.cw-contact-feature small {
    font-size: 12px;
    color: #64748b;
}

.cw-contact-right {
    padding: 45px;
    background: white;
}

.cw-contact-right form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cw-contact-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cw-contact-right input,
.cw-contact-right textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8fafc;
}

.cw-contact-right input:focus,
.cw-contact-right textarea:focus {
    outline: none;
    border-color: #f5a623;
    background: white;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.08);
}

.cw-contact-btn {
    background: #f5a623;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.cw-contact-btn:hover {
    background: #e09512;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .cw-contact-card {
        grid-template-columns: 1fr;
        border-radius: 28px;
        margin: 0 20px;
    }
    
    .cw-contact-left {
        text-align: center;
        padding: 40px 30px;
    }
    
    .cw-contact-left-inner {
        max-width: 100%;
    }
    
    .cw-contact-features {
        align-items: center;
    }
    
    .cw-contact-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .cw-contact-feature div {
        align-items: center;
    }
    
    .cw-contact-right {
        padding: 35px 30px;
    }
}

@media (max-width: 550px) {
    .cw-contact-input-group {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .cw-contact-left h2 {
        font-size: 26px;
    }
    
    .cw-contact-right {
        padding: 25px 20px;
    }
}
.cw-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.cw-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.cw-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.cw-footer-item {
    flex: 1;
    min-width: 200px;
}

.cw-footer-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #f5a623;
}

.cw-footer-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.cw-footer-links {
    list-style: none;
}

.cw-footer-links li {
    margin-bottom: 10px;
}

.cw-footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.cw-footer-links li a:hover {
    color: #f5a623;
}

.cw-responsible-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cw-responsible-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.cw-responsible-item img {
    height: 22px;
    width: auto;
}

.cw-responsible-item span {
    color: #1e293b;
    font-size: 12px;
    font-weight: 600;
}

.cw-responsible-item:hover {
    transform: translateY(-2px);
}

.cw-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #64748b;
}

.cw-age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cw-age-modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.cw-age-modal-icon {
    font-size: 65px;
    margin-bottom: 15px;
}

.cw-age-modal-content h2 {
    color: #1e293b;
    font-size: 28px;
    margin-bottom: 15px;
}

.cw-age-modal-content p {
    color: #64748b;
    font-size: 14px;
}

.cw-age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cw-age-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

.cw-confirm {
    background: #f5a623;
    color: white;
}

.cw-decline {
    background: #e2e8f0;
    color: #1e293b;
}

.cw-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s;
    max-width: 700px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: calc(100% - 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cw-cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cw-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cw-cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 13px;
    flex: 1;
}

.cw-cookie-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cw-cookie-text a {
    color: #f5a623;
    text-decoration: none;
}

.cw-cookie-buttons {
    display: flex;
    gap: 10px;
}

.cw-cookie-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 13px;
}

.cw-cookie-btn.cw-accept {
    background: #f5a623;
    color: white;
}

.cw-cookie-btn.cw-decline {
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 1100px) {
    .cw-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cw-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .cw-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cw-nav-links {
        display: none;
    }
    
    .cw-hamburger {
        display: flex;
    }
    
    .cw-nav-container {
        padding: 12px 20px;
    }
    
    .cw-hero h1 {
        font-size: 42px;
    }
    
    .cw-hero p {
        font-size: 15px;
    }
    
    .cw-btn-primary, .cw-btn-secondary {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .cw-section-title {
        font-size: 28px;
    }
    
    .cw-featured-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .cw-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cw-stats-container {
        gap: 25px;
    }
    
    .cw-stat span {
        font-size: 22px;
    }
    
    .cw-warning {
        margin: 30px 20px;
        padding: 18px 20px;
    }
    
    .cw-warning-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cw-warning-tags {
        justify-content: center;
    }
    
    .cw-mission-content h2 {
        font-size: 28px;
    }
    
    .cw-mission-content p {
        font-size: 14px;
    }
    
    .cw-mission-stats {
        gap: 25px;
    }
    
    .cw-footer-row {
        flex-direction: column;
        text-align: center;
    }
    
    .cw-responsible-icons {
        justify-content: center;
    }
    
    .cw-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cw-cookie-text {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cw-hero h1 {
        font-size: 32px;
    }
    
    .cw-hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cw-btn-secondary {
        margin-left: 0;
    }
    
    .cw-stats-container {
        gap: 15px;
    }
    
    .cw-stat span {
        font-size: 18px;
    }
    
    .cw-stat small {
        font-size: 10px;
    }
    
    .cw-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .cw-mission-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.cw-contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.cw-contact-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cw-contact-hero-content p {
    color: #94a3b8;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.cw-contact-page {
    padding: 60px 0 80px;
}

.cw-contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.cw-contact-left {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cw-contact-left-inner {
    max-width: 380px;
}

.cw-contact-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #f5a623;
    margin-bottom: 25px;
}

.cw-contact-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.cw-contact-left p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cw-contact-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cw-contact-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cw-contact-feature span {
    font-size: 28px;
}

.cw-contact-feature div {
    display: flex;
    flex-direction: column;
}

.cw-contact-feature strong {
    font-size: 15px;
    margin-bottom: 3px;
}

.cw-contact-feature small {
    font-size: 12px;
    color: #64748b;
}

.cw-contact-right {
    padding: 45px;
    background: white;
}

.cw-contact-right form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cw-contact-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cw-contact-right input,
.cw-contact-right textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8fafc;
}

.cw-contact-right input:focus,
.cw-contact-right textarea:focus {
    outline: none;
    border-color: #f5a623;
    background: white;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.08);
}

.cw-contact-btn {
    background: #f5a623;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.cw-contact-btn:hover {
    background: #e09512;
    transform: translateY(-2px);
}

.cw-faq {
    padding: 60px 0 80px;
    background: #f1f5f9;
}

.cw-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.cw-faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e293b;
}

.cw-faq-header p {
    color: #64748b;
    font-size: 16px;
}

.cw-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.cw-faq-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.cw-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cw-faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.cw-faq-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.cw-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.cw-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.cw-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.cw-footer-item {
    flex: 1;
    min-width: 200px;
}

.cw-footer-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #f5a623;
}

.cw-footer-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.cw-footer-links {
    list-style: none;
}

.cw-footer-links li {
    margin-bottom: 10px;
}

.cw-footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.cw-footer-links li a:hover {
    color: #f5a623;
}

.cw-responsible-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cw-responsible-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.cw-responsible-item img {
    height: 22px;
    width: auto;
}

.cw-responsible-item span {
    color: #1e293b;
    font-size: 12px;
    font-weight: 600;
}

.cw-responsible-item:hover {
    transform: translateY(-2px);
}

.cw-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #64748b;
}

.cw-age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cw-age-modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.cw-age-modal-icon {
    font-size: 65px;
    margin-bottom: 15px;
}

.cw-age-modal-content h2 {
    color: #1e293b;
    font-size: 28px;
    margin-bottom: 15px;
}

.cw-age-modal-content p {
    color: #64748b;
    font-size: 14px;
}

.cw-age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cw-age-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

.cw-confirm {
    background: #f5a623;
    color: white;
}

.cw-decline {
    background: #e2e8f0;
    color: #1e293b;
}

.cw-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s;
    max-width: 700px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: calc(100% - 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cw-cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cw-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cw-cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 13px;
    flex: 1;
}

.cw-cookie-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cw-cookie-text a {
    color: #f5a623;
    text-decoration: none;
}

.cw-cookie-buttons {
    display: flex;
    gap: 10px;
}

.cw-cookie-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 13px;
}

.cw-cookie-btn.cw-accept {
    background: #f5a623;
    color: white;
}

.cw-cookie-btn.cw-decline {
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 900px) {
    .cw-contact-card {
        grid-template-columns: 1fr;
        border-radius: 28px;
        margin: 0 20px;
    }
    
    .cw-contact-left {
        text-align: center;
        padding: 40px 30px;
    }
    
    .cw-contact-left-inner {
        max-width: 100%;
    }
    
    .cw-contact-features {
        align-items: center;
    }
    
    .cw-contact-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .cw-contact-feature div {
        align-items: center;
    }
    
    .cw-contact-right {
        padding: 35px 30px;
    }
    
    .cw-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .cw-contact-hero-content h1 {
        font-size: 36px;
    }
    
    .cw-contact-hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 550px) {
    .cw-contact-input-group {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .cw-contact-left h2 {
        font-size: 26px;
    }
    
    .cw-contact-right {
        padding: 25px 20px;
    }
    
    .cw-faq-header h2 {
        font-size: 28px;
    }
    
    .cw-faq-item {
        padding: 20px;
    }
    
    .cw-faq-item h4 {
        font-size: 16px;
    }
}

.cw-allgames-hero {
    padding: 140px 0 50px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.cw-allgames-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cw-allgames-hero-content p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.cw-allgames {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.cw-allgames-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cw-allgames-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cw-allgames-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cw-allgames-card-link {
    display: block;
    text-decoration: none;
}

.cw-allgames-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cw-allgames-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cw-allgames-card:hover .cw-allgames-image img {
    transform: scale(1.05);
}

.cw-allgames-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 166, 35, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cw-allgames-card:hover .cw-allgames-overlay {
    opacity: 1;
}

.cw-allgames-play {
    width: 50px;
    height: 50px;
    background: white;
    color: #f5a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cw-allgames-play:hover {
    transform: scale(1.1);
    background: #f5a623;
    color: white;
}

.cw-allgames-info {
    padding: 16px;
    text-align: center;
}

.cw-allgames-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.cw-allgames-btn {
    display: inline-block;
    background: #f5a623;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cw-allgames-btn:hover {
    background: #e09512;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .cw-allgames-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 800px) {
    .cw-allgames-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cw-allgames-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 550px) {
    .cw-allgames-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cw-allgames-hero {
        padding: 110px 0 35px;
    }
    
    .cw-allgames-hero-content h1 {
        font-size: 28px;
    }
    
    .cw-allgames-hero-content p {
        font-size: 14px;
    }
    
    .cw-allgames-image {
        height: 180px;
    }
}

.cw-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.cw-hamburger span {
    width: 24px;
    height: 2px;
    background: #1e293b;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.cw-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.cw-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.cw-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.cw-nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 280px;
    height: 100vh;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 0 30px 35px;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 1001;
    list-style: none;
    border-left: 1px solid rgba(245, 166, 35, 0.3);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.cw-nav-mobile.active {
    right: 0;
}

.cw-nav-mobile li {
    margin: 0 0 25px 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.cw-nav-mobile.active li {
    opacity: 1;
    transform: translateX(0);
}

.cw-nav-mobile.active li:nth-child(1) { transition-delay: 0.05s; }
.cw-nav-mobile.active li:nth-child(2) { transition-delay: 0.1s; }
.cw-nav-mobile.active li:nth-child(3) { transition-delay: 0.15s; }
.cw-nav-mobile.active li:nth-child(4) { transition-delay: 0.2s; }
.cw-nav-mobile.active li:nth-child(5) { transition-delay: 0.25s; }

.cw-nav-mobile li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.cw-nav-mobile li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5a623;
    transition: width 0.3s ease;
}

.cw-nav-mobile li a:hover::after,
.cw-nav-mobile li a.cw-nav-active::after {
    width: 30px;
}

.cw-nav-mobile li a:hover,
.cw-nav-mobile li a.cw-nav-active {
    color: #f5a623;
    transform: translateX(5px);
}

.cw-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.cw-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .cw-nav-links {
        display: none;
    }
    
    .cw-hamburger {
        display: flex;
    }
    
    .cw-nav-container {
        padding: 12px 20px;
    }
}

.cw-game-arena {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.cw-game-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.cw-game-alert {
    background: #fff8ed;
    border-left: 4px solid #f5a623;
    border-radius: 12px;
    padding: 14px 22px;
    margin-bottom: 25px;
}

.cw-game-alert-bottom {
    margin-top: 25px;
    margin-bottom: 25px;
}

.cw-game-alert p {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cw-game-alert strong {
    color: #f5a623;
    font-weight: 700;
}

.cw-game-frame-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cw-game-frame-wrapper:hover {
    border-color: #f5a623;
    box-shadow: 0 25px 45px -10px rgba(245, 166, 35, 0.15);
}

.cw-game-iframe {
    display: block;
    border: none;
    background: #000;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .cw-game-frame-wrapper {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .cw-game-arena {
        padding: 100px 0 50px;
    }
    
    .cw-game-container {
        padding: 0 20px;
    }
    
    .cw-game-frame-wrapper {
        height: 450px;
        border-radius: 16px;
    }
    
    .cw-game-alert {
        padding: 12px 18px;
    }
    
    .cw-game-alert p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .cw-game-arena {
        padding: 90px 0 40px;
    }
    
    .cw-game-frame-wrapper {
        height: 350px;
        border-radius: 12px;
    }
    
    .cw-game-alert {
        padding: 10px 15px;
    }
    
    .cw-game-alert p {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .cw-game-frame-wrapper {
        height: 300px;
    }
}
.cw-top-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.cw-top-trophy {
    font-size: 64px;
    margin-bottom: 20px;
}

.cw-top-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cw-top-hero-content p {
    color: #94a3b8;
    font-size: 16px;
}

.cw-top-list {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.cw-top-leaderboard {
    max-width: 900px;
    margin: 0 auto;
}

.cw-top-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 20px;
    padding: 18px 25px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
}

.cw-top-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cw-top-number {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #64748b;
}

.rank-1 .cw-top-number {
    background: #ffd700;
    color: #1e293b;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.rank-2 .cw-top-number {
    background: #c0c0c0;
    color: #1e293b;
}

.rank-3 .cw-top-number {
    background: #cd7f32;
    color: #1e293b;
}

.cw-top-image {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.cw-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cw-top-details {
    flex: 1;
}

.cw-top-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
}

.cw-top-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.cw-top-plays {
    font-size: 13px;
    color: #f5a623;
    font-weight: 600;
}

.cw-top-rating {
    font-size: 13px;
    color: #fbbf24;
    font-weight: 600;
}

.cw-top-progress {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.cw-top-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f5a623, #fbbf24);
    border-radius: 3px;
}

.cw-top-badge {
    margin: 0 15px;
}

.cw-top-badge span {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #f5a623;
}

.rank-1 .cw-top-badge span {
    background: rgba(245, 166, 35, 0.15);
    color: #f5a623;
}

.cw-top-btn {
    background: #f5a623;
    color: white;
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.cw-top-btn:hover {
    background: #e09512;
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .cw-top-hero {
        padding: 110px 0 40px;
    }
    
    .cw-top-hero-content h1 {
        font-size: 36px;
    }
    
    .cw-top-item {
        flex-wrap: wrap;
        padding: 18px;
        gap: 12px;
    }
    
    .cw-top-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .cw-top-image {
        width: 55px;
        height: 55px;
    }
    
    .cw-top-details {
        width: calc(100% - 150px);
    }
    
    .cw-top-badge {
        order: 3;
        margin: 0;
    }
    
    .cw-top-btn {
        order: 4;
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
}

@media (max-width: 550px) {
    .cw-top-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cw-top-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .cw-top-image {
        width: 90px;
        height: 90px;
    }
    
    .cw-top-details {
        width: 100%;
    }
    
    .cw-top-meta {
        justify-content: center;
    }
    
    .cw-top-badge {
        order: 0;
    }
    
    .cw-top-btn {
        width: auto;
        min-width: 160px;
    }
}
.cw-month-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.cw-month-calendar {
    font-size: 64px;
    margin-bottom: 20px;
}

.cw-month-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cw-month-hero-content p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 35px;
}

.cw-month-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cw-month-stat {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 30px;
    border-radius: 20px;
    min-width: 120px;
}

.cw-month-stat span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #f5a623;
}

.cw-month-stat small {
    font-size: 12px;
    color: #94a3b8;
}

.cw-month-grid-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.cw-month-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.cw-month-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.cw-month-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.cw-month-card.rank-1 {
    border-top: 4px solid #ffd700;
}

.cw-month-card.rank-2 {
    border-top: 4px solid #c0c0c0;
}

.cw-month-card.rank-3 {
    border-top: 4px solid #cd7f32;
}

.cw-month-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.cw-month-medal {
    font-size: 18px;
}

.cw-month-number {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.rank-1 .cw-month-rank {
    background: rgba(255, 215, 0, 0.85);
}
.rank-1 .cw-month-number {
    color: #1e293b;
}

.rank-2 .cw-month-rank {
    background: rgba(192, 192, 192, 0.85);
}
.rank-2 .cw-month-number {
    color: #1e293b;
}

.rank-3 .cw-month-rank {
    background: rgba(205, 127, 50, 0.85);
}
.rank-3 .cw-month-number {
    color: #1e293b;
}

.cw-month-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cw-month-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.cw-month-card:hover .cw-month-image img {
    transform: scale(1.05);
}

.cw-month-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 166, 35, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.cw-month-card:hover .cw-month-overlay {
    opacity: 1;
}

.cw-month-play {
    width: 50px;
    height: 50px;
    background: white;
    color: #f5a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.cw-month-play:hover {
    transform: scale(1.1);
    background: #f5a623;
    color: white;
}

.cw-month-info {
    padding: 18px;
    text-align: center;
}

.cw-month-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.cw-month-growth {
    display: inline-block;
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.cw-month-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 12px;
    overflow: hidden;
}

.cw-month-progress {
    height: 100%;
    background: linear-gradient(90deg, #f5a623, #fbbf24);
    border-radius: 3px;
}

.cw-month-players {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.cw-month-btn {
    display: inline-block;
    background: #f5a623;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.cw-month-btn:hover {
    background: #e09512;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .cw-month-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .cw-month-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .cw-month-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .cw-month-hero {
        padding: 110px 0 40px;
    }
    
    .cw-month-stats {
        gap: 15px;
    }
    
    .cw-month-stat {
        padding: 12px 20px;
    }
    
    .cw-month-stat span {
        font-size: 22px;
    }
    
    .cw-month-image {
        height: 180px;
    }
}