* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #faf6ed;
            color: #2d3436;
            line-height: 1.9;
            padding-bottom: 90px;
        }
        .container {
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #e17055, #d63031);
            color: white;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.25);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffeaa7;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.35);
            white-space: nowrap;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeaa7;
            border-bottom: 3px solid #ffeaa7;
        }
        .daman-link {
            background-color: #ffeaa7;
            padding: 10px 24px;
            border-radius: 35px;
            color: #d63031 !important;
            font-weight: 800;
            border-bottom: none !important;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .daman-link:hover {
            background-color: #fdcb6e;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }
        .menu-btn {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: white;
            z-index: 10000;
        }
        .hero {
            background: linear-gradient(135deg, #fd79a8, #e17055);
            color: white;
            padding: 70px 0;
            border-radius: 0 0 50px 50px;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "🌶️";
            position: absolute;
            top: 40px;
            left: 40px;
            font-size: 12rem;
            opacity: 0.15;
            transform: rotate(-25deg);
        }
        .hero::after {
            content: "⚔️";
            position: absolute;
            bottom: 40px;
            right: 40px;
            font-size: 12rem;
            opacity: 0.15;
            transform: rotate(25deg);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            color: #ffeaa7;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.4);
            position: relative;
            z-index: 1;
            line-height: 1.4;
        }
        .hero p {
            font-size: 1.45rem;
            max-width: 950px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 1;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn {
            padding: 18px 45px;
            border: none;
            border-radius: 45px;
            font-size: 1.35rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.25);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .download-btn {
            background-color: #00b894;
            color: white;
        }
        .download-btn:hover {
            background-color: #00cec9;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .login-btn {
            background-color: #ffeaa7;
            color: #d63031;
        }
        .login-btn:hover {
            background-color: #fdcb6e;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .content {
            background-color: white;
            border-radius: 30px;
            padding: 45px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            margin-bottom: 60px;
        }
        h2 {
            font-size: 2.6rem;
            color: #d63031;
            margin: 70px 0 35px;
            padding-bottom: 18px;
            border-bottom: 4px solid #fd79a8;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 120px;
            height: 4px;
            background-color: #d63031;
        }
        h3 {
            font-size: 2rem;
            color: #2d3436;
            margin: 45px 0 25px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🌶️";
            margin-right: 15px;
            color: #d63031;
        }
        h4 {
            font-size: 1.5rem;
            color: #e17055;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h4::before {
            content: "⚔️";
            margin-right: 12px;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.18rem;
            color: #4a4a4a;
        }
        .highlight {
            font-weight: 800;
            color: #d63031;
            font-size: 1.25rem;
        }
        .keyword {
            font-weight: 900;
            color: #d63031;
            font-size: 1.3rem;
            display: inline-block;
            margin: 0 2px;
        }
        .emoji {
            margin-right: 15px;
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .image-caption {
            font-size: 1.1rem;
            color: #747d8c;
            padding: 18px 0;
            background-color: #f9f5f0;
            font-style: italic;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            font-size: 1.15rem;
        }
        .stats-table th, .stats-table td {
            padding: 18px 22px;
            text-align: left;
            border-bottom: 2px solid #f1f2f6;
        }
        .stats-table th {
            background-color: #d63031;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 1.05rem;
            letter-spacing: 1.5px;
        }
        .stats-table tr:hover {
            background-color: #fff5f0;
            transform: scale(1.009);
            transition: transform 0.2s ease;
        }
        .stats-table tr:nth-child(even) {
            background-color: #faf6ed;
        }
        .list-container {
            margin: 35px 0 45px 45px;
        }
        .list-container li {
            margin-bottom: 22px;
            font-size: 1.18rem;
            color: #4a4a4a;
            position: relative;
            padding-left: 30px;
        }
        .list-container li::before {
            content: "🌶️";
            position: absolute;
            left: 0;
            top: 2px;
            color: #d63031;
        }
        .tabs {
            display: flex;
            gap: 18px;
            margin: 40px 0;
            flex-wrap: wrap;
            border-bottom: 2px solid #f1f2f6;
            padding-bottom: 15px;
        }
        .tab-btn {
            padding: 14px 28px;
            background-color: #f9f5f0;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            font-weight: 700;
            color: #2d3436;
        }
        .tab-btn.active {
            background-color: #d63031;
            color: white;
            box-shadow: 0 5px 12px rgba(214,48,49,0.35);
        }
        .tab-btn:hover:not(.active) {
            background-color: #ffebe0;
            transform: translateY(-4px);
        }
        .tab-content {
            padding: 35px;
            border-radius: 25px;
            background-color: #fff8f0;
            margin-bottom: 35px;
            border-left: 6px solid #d63031;
        }
        .community-card {
            background-color: #fff3e0;
            border-radius: 20px;
            padding: 30px;
            margin: 35px 0;
            border-left: 7px solid #fd79a8;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .community-card h4 {
            color: #e65100;
            margin-bottom: 18px;
            font-size: 1.45rem;
            display: flex;
            align-items: center;
        }
        .community-card h4::before {
            content: "💬";
            margin-right: 12px;
        }
        .community-card p {
            margin-bottom: 22px;
        }
        .dev-response {
            background-color: #e3f2fd;
            padding: 20px;
            border-radius: 12px;
            margin-top: 18px;
            border-left: 5px solid #3498db;
        }
        .dev-response strong {
            color: #2980b9;
            font-size: 1.2rem;
        }
        .strategy-card {
            background-color: #e8f5e9;
            border-radius: 20px;
            padding: 30px;
            margin: 35px 0;
            border-top: 7px solid #27ae60;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .strategy-card h4 {
            color: #218c74;
            margin-bottom: 22px;
        }
        .event-card {
            background-color: #fce4ec;
            border-radius: 20px;
            padding: 30px;
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .event-icon {
            font-size: 4rem;
            flex: 1 1 70px;
            text-align: center;
        }
        .event-details {
            flex: 3 1 400px;
        }
        .event-details h4 {
            color: #c2185b;
            margin-bottom: 15px;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 70px 0 40px;
            border-radius: 50px 50px 0 0;
            margin-top: 90px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-section h4 {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: #ffeaa7;
            padding-bottom: 15px;
            border-bottom: 3px solid #4a4a4a;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #b2bec3;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.15rem;
        }
        .footer-links a:hover {
            color: #ffeaa7;
            padding-left: 10px;
        }
        .game-type-nav {
            margin: 50px 0;
        }
        .game-type-nav h4 {
            margin-bottom: 25px;
            color: #ffeaa7;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .type-links a {
            background-color: #4a4a4a;
            padding: 12px 24px;
            border-radius: 35px;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .type-links a:hover {
            background-color: #d63031;
            transform: translateY(-4px);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 40px 0 60px;
        }
        .tag {
            background-color: #4a4a4a;
            padding: 12px 26px;
            border-radius: 35px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #d63031;
            transform: translateY(-4px);
        }
        .recommendation {
            background-color: #4a4a4a;
            padding: 35px;
            border-radius: 25px;
            margin: 50px 0;
            text-align: center;
            font-size: 1.35rem;
            line-height: 2.2;
        }
        .recommendation a {
            color: #ffeaa7;
            font-weight: 800;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid #4a4a4a;
            font-size: 1.15rem;
            color: #b2bec3;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            .hero p {
                font-size: 1.35rem;
            }
            h2 {
                font-size: 2.4rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .content {
                padding: 40px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 30px;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .btn {
                padding: 16px 40px;
                font-size: 1.25rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .stats-table th, .stats-table td {
                padding: 16px 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #e17055, #d63031);
                padding: 35px;
                gap: 30px;
                box-shadow: 0 18px 18px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1.25rem;
            }
            .btn-container {
                gap: 25px;
            }
            .btn {
                padding: 14px 35px;
                font-size: 1.15rem;
            }
            h2 {
                font-size: 2rem;
                margin: 60px 0 30px;
            }
            h3 {
                font-size: 1.6rem;
            }
            .content {
                padding: 35px;
            }
            .list-container {
                margin-left: 35px;
            }
            .tabs {
                gap: 12px;
            }
            .tab-btn {
                padding: 12px 24px;
                font-size: 1.05rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .content {
                padding: 30px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
            }
            .stats-table {
                font-size: 1.05rem;
            }
            .stats-table th, .stats-table td {
                padding: 14px 18px;
            }
            .event-card {
                flex-direction: column;
                text-align: center;
            }
            .footer-container {
                gap: 40px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            .footer-container {
                gap: 35px;
            }
            .tags {
                gap: 12px;
            }
            .tag {
                padding: 10px 22px;
                font-size: 1rem;
            }
        }
