/* Reset and Base Styles */
* {
    margin: 0;
    padding: 1px;
    box-sizing: border-box;
}

/* Download Page Styles */
.download-main {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.download-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.download-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.download-header .subtitle {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: left;
}

.main-description {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.local-features {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li {
    font-size: 1.1rem;
    color: #ffffff;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.download-section {
    margin-bottom: 5rem;
}

/* Device Compatibility Section */
.compatibility-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.compatibility-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.compatibility-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.compatibility-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.compatibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.android-compatibility {
    border-color: #3DDC84;
}

.android-compatibility:hover {
    border-color: #3DDC84;
    box-shadow: 0 15px 30px rgba(61, 220, 132, 0.2);
}

.ios-compatibility {
    border-color: #007AFF;
    opacity: 0.8;
}

.ios-compatibility:hover {
    border-color: #007AFF;
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.2);
}

.compatibility-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.platform-icon {
    margin-right: 1rem;
}

.compatibility-header h3 {
    font-size: 1.8rem;
    color: var(--light-text);
    margin: 0;
    font-weight: 600;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.compatibility-details {
    margin-bottom: 2rem;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-label {
    font-weight: 600;
    color: #d4af37;
    font-size: 1rem;
}

.requirement-value {
    color: var(--light-text);
    font-size: 1rem;
    text-align: right;
}

.supported-devices h4 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.device-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.device-list li {
    color: #e0e0e0;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.device-list li::before {
    content: '📱';
    position: absolute;
    left: 0;
}

.compatibility-checker {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.compatibility-checker h3 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.compatibility-checker p {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.checker-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.check-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--gold-color));
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.android-check {
    background: linear-gradient(45deg, #3DDC84, #00C853);
}

.ios-check {
    background: linear-gradient(45deg, #007AFF, #0056CC);
    color: white;
}

.compatibility-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compatibility-result.compatible {
    background: rgba(61, 220, 132, 0.2);
    color: #3DDC84;
    border: 1px solid #3DDC84;
}

.compatibility-result.incompatible {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.download-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-weight: 700;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-card:hover::before {
    left: 100%;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-color);
}

.android-card {
    border-color: #3DDC84;
}

.android-card:hover {
    border-color: #3DDC84;
    box-shadow: 0 20px 40px rgba(61, 220, 132, 0.3);
}

.ios-card {
    border-color: #007AFF;
    opacity: 0.8;
}

.ios-card:hover {
    border-color: #007AFF;
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.3);
}

.download-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.download-card h3 {
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-description {
    margin-bottom: 2rem;
    text-align: left;
}

.primary-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.secondary-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.compatibility-text,
.availability-text {
    font-size: 1rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.download-card p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

.feature.coming-soon {
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
    border-color: #007AFF;
}

.btn-coming-soon {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: #adb5bd;
    border: 2px solid #6c757d;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
    opacity: 0.7;
}

.download-info {
    margin-top: 1rem;
    color: #d4af37;
    font-size: 0.9rem;
}

.instructions-section {
    margin-bottom: 5rem;
}

.instructions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-weight: 700;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.instruction-card {
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid var(--png-red);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.instruction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(206, 17, 38, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--png-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.instruction-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.instruction-card p {
    color: #d4af37;
    line-height: 1.6;
}

.page-navigation {
    margin-bottom: 4rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-btn {
    background: linear-gradient(45d, var(--primary-color), var(--gold-color));
    color: red;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-color);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    color: red;
}

.download-info-section {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 205, 0, 0.1), rgba(0, 0, 0, 0.8));
    border: 1px solid var(--png-yellow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 205, 0, 0.2);
}

.info-card h4 {
    color: var(--png-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-card p {
    color: #d4af37;
    line-height: 1.6;
}

/* Responsive Design for Download Page */
@media (max-width: 768px) {
    .download-header h1 {
        font-size: 2.5rem;
    }

    .download-header .subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .intro-text {
        text-align: center;
        padding: 0 1rem;
    }

    .main-description {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 1.1rem;
    }

    .local-features {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 1rem;
        padding: 0.3rem 0;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-card {
        padding: 2rem;
    }

    .card-description {
        text-align: center;
    }

    .primary-text {
        font-size: 1.2rem;
    }

    .secondary-text {
        font-size: 1rem;
    }

    /* Compatibility Section Mobile */
    .compatibility-section {
        padding: 2rem 0;
    }

    .compatibility-section h2 {
        font-size: 2rem;
    }

    .compatibility-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .compatibility-card {
        padding: 2rem 1.5rem;
    }

    .compatibility-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .platform-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .compatibility-header h3 {
        font-size: 1.5rem;
    }

    .coming-soon-badge {
        position: static;
        margin-top: 0.5rem;
        display: inline-block;
    }

    .requirement-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.6rem 0;
    }

    .requirement-value {
        text-align: left;
        margin-top: 0.3rem;
        font-size: 0.9rem;
    }

    .device-list li {
        font-size: 0.9rem;
    }

    .compatibility-checker {
        padding: 2rem 1.5rem;
    }

    .compatibility-checker h3 {
        font-size: 1.5rem;
    }

    .checker-buttons {
        flex-direction: column;
        align-items: center;
    }

    .check-btn {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* PNG Flag Colors */
:root {
    --primary-color: #d4af37;
    --secondary-color: #000000;
    --accent-color: #ff6b35;
    --gold-color: #ffd700;
    --png-red: #CE1126;
    --png-black: #000000;
    --png-yellow: #FFCD00;
    --gaming-blue: #00D4FF;
    --gaming-purple: #8B5CF6;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --casino-gradient: linear-gradient(45deg, #d4af37, #ffd700, #b8860b);
    --shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #6c757d;
}

.breadcrumb-list a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-list span {
    color: #6c757d;
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(206, 17, 38, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--gray-text);
    font-weight: 500;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.navbar .nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--png-red);
    background: rgba(206, 17, 38, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(206, 17, 38, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 8px rgba(206, 17, 38, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    color: var(--gray-text);
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.9));
    margin: 10% auto;
    padding: 2rem;
    border: 2px solid var(--gold-color);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.modal-content h2 {
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.modal-buttons .btn {
    width: 100%;
    max-width: 300px;
}

.close {
    color: var(--gold-color);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
    
    .modal-buttons {
        gap: 0.8rem;
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--casino-gradient);
    color: var(--secondary-color);
    border: 2px solid var(--gold-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, #ffd700, #d4af37, #b8860b);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: 2px solid #25D366;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(45deg, #128C7E, #25D366);
}





.btn-download {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: 2px solid #ff6b35;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--png-red);
}

.btn-secondary:hover {
    background: var(--png-red);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.gaming-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(206, 17, 38, 0.3);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    font-size: 3rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
}

.badge-subtitle {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(206, 17, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--darker-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.png-flag-colors {
    width: 200px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.flag-section {
    height: 50%;
}

.flag-section.red {
    background: var(--png-red);
}

.flag-section.black {
    background: var(--png-black);
}

/* Gaming Section */
.gaming {
    background: var(--dark-bg);
}

.gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.9));
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-card h3 {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.game-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.game-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement {
    display: inline-block;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), rgba(255, 215, 0, 0.2));
    color: var(--gold-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.2rem;
    border: 1px solid var(--gold-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Community Section */
.community {
    background: var(--darker-bg);
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.9));
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(206, 17, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h4 {
    color: var(--light-text);
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--gray-text);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.twitch {
    background: #9146FF;
    color: white;
}

.social-link.youtube {
    background: #FF0000;
    color: white;
}

.social-link.discord {
    background: #5865F2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(206, 17, 38, 0.2);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-text);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--png-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Blog Styles */
.blog-main {
    padding: 100px 0 50px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blog-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: linear-gradient(145deg, #2a2a3e, #1e1e32);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    border-color: #ffed4e;
    background: linear-gradient(145deg, #2f2f43, #232337);
}

.blog-card:hover .blog-card-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.blog-card:hover h3 {
    color: #ffed4e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.blog-card:hover p {
    color: #e0e0e0;
}

.blog-card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.blog-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.blog-card p {
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
    transition: all 0.3s ease;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #b8860b;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-meta:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.blog-meta-icon {
    font-size: 1rem;
    color: #ffd700;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.blog-meta:hover .blog-meta-icon {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

/* Blog Post Styles */
.blog-post-main {
    padding: 100px 0 50px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.blog-post-header {
    margin-bottom: 50px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid transparent;
    cursor: pointer;
}

.back-link:hover {
    color: #ffed4e;
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.blog-category {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.blog-category:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.blog-date {
    color: #999;
}

.blog-post-header h1 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.blog-hero-image {
    text-align: center;
    margin: 30px 0;
}

.blog-hero-placeholder {
    font-size: 4rem;
    background: linear-gradient(145deg, #2a2a3e, #1e1e32);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 40px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    cursor: default;
}

.blog-hero-placeholder:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffed4e;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.blog-post-content {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-content .lead {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 300;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 0 10px 10px 0;
}

.blog-post-content h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin: 50px 0 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    cursor: default;
}

.blog-post-content h2:hover {
    color: #ffed4e;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    transform: translateX(10px);
}

.blog-post-content h3 {
    color: #ffed4e;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.blog-post-content h3:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transform: translateX(8px);
}

.blog-post-content h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
    color: #cccccc;
}

.blog-post-content blockquote {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    margin: 30px 0;
    padding: 20px 30px;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #e0e0e0;
    transition: all 0.3s ease;
    cursor: default;
}

.blog-post-content blockquote:hover {
    background: rgba(255, 215, 0, 0.15);
    border-left-color: #ffed4e;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.blog-post-content blockquote p {
    margin: 0;
    font-size: 1.1rem;
}

.blog-post-content strong {
    color: #ffd700;
    font-weight: 600;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.blog-post-content th,
.blog-post-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.blog-post-content th {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    font-weight: 600;
}

.blog-post-content code {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* Blog CTA Styles */
.blog-cta {
    margin-top: 40px;
    text-align: center;
}

.blog-cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Support Page Styles */
.support-main {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--dark-bg);
}

.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-header h1 {
    font-size: 3rem;
    background: var(--casino-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.support-header p {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-btn {
    background: var(--casino-gradient);
    color: var(--secondary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.support-main .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.support-main .faq-grid .faq-item {
    padding: 1.25rem;
    margin-bottom: 0;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.support-main .faq-grid .faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.support-main .faq-grid .faq-item h4 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
}

.support-main .faq-grid .faq-item p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
}

.contact-info {
    text-align: center;
    padding: 3rem 0;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    color: var(--light-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-label {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: block;
    width: 100%;
}

.contact-value {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.4;
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-header h1 {
        font-size: 2rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Blog responsive styles */
    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        padding: 20px;
    }

    .blog-post-header h1 {
        font-size: 2.2rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content .lead {
        font-size: 1.1rem;
        padding: 15px;
    }

    .blog-post-content h2 {
        font-size: 1.8rem;
    }

    .blog-post-content h3 {
        font-size: 1.5rem;
    }

    .blog-hero-placeholder {
        font-size: 3rem;
        padding: 30px;
    }
}

/* WhatsApp CTA Button - Glassmorphism */
.whatsapp-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: glassPulse 3s ease-in-out infinite;
}

.whatsapp-cta:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.3);
    color: var(--gold-color);
    text-decoration: none;
    border-color: rgba(255, 215, 0, 0.5);
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 1;
    position: relative;
}

.whatsapp-text {
    position: relative;
    z-index: 1;
}

@keyframes glassPulse {
    0% {
        box-shadow: 
            0 8px 32px rgba(212, 175, 55, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 1px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 0 1px rgba(255, 215, 0, 0.2),
            0 0 20px rgba(255, 215, 0, 0.2);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(212, 175, 55, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 1px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
}
/* Mega888 Download Button - Homepage Style */
.mega888-download-section {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.mega888-download-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.mega888-download-section p {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.mega888-download-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: 2px solid #ff6b35;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
}

.mega888-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    text-decoration: none;
    color: white;
}

.download-icon {
    width: 16px !important;
    height: 16px !important;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: block;
    vertical-align: middle;
}

.mega888-download-btn:hover .download-icon {
    transform: translateY(1px);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gaming-grid {
        grid-template-columns: 1fr;
    }
    
    .community-features {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .whatsapp-cta .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Make Android logo smaller on mobile */
    .android-card .download-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}
