html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:after, *:before {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 20px;
    position: relative;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff4757;
    text-decoration: none;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-register {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
    color: #000;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 213, 115, 0.3);
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-login:hover {
    background: white;
    color: #000;
}

/* Navigation Menu */
.nav-menu {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    border-top: 1px solid #333;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2ed573;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2ed573;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Banner Styles */
.banner {
    background: url("../images/banner.png") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bonus-text {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.bonus-amount {
    font-size: 64px;
    font-weight: bold;
    color: #2ed573;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 20px 0;
    display: block;
}

.banner-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
    color: #000;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(46, 213, 115, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 213, 115, 0.4);
}

.banner-image {
    position: relative;
    text-align: center;
}

.character-group {
    position: relative;
    display: inline-block;
}

.character {
    width: 120px;
    height: 150px;
    background: linear-gradient(45deg, #ff6b7a, #ffa502);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    margin: 0 10px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.character:nth-child(2) {
    animation-delay: -1s;
    background: linear-gradient(45deg, #3742fa, #5352ed);
}

.character:nth-child(3) {
    animation-delay: -2s;
    background: linear-gradient(45deg, #2f3542, #57606f);
}

.character::before {
    content: '🎰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.character:nth-child(2)::before {
    content: '🃏';
}

.character:nth-child(3)::before {
    content: '🎲';
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #333;
        display: block;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .bonus-amount {
        font-size: 48px;
    }

    .banner-features {
        justify-content: center;
    }

    .character {
        width: 80px;
        height: 100px;
        margin: 0 5px;
    }

    .character::before {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo {
        font-size: 24px;
    }

    .banner {
        padding: 60px 15px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .bonus-amount {
        font-size: 36px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

.games-section {
    max-width: 1400px;
    margin: 20px auto 60px auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
}

.view-all-btn {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.3);
}

.games-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.games-grid::-webkit-scrollbar {
    height: 8px;
}

.games-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    flex: 0 0 250px;
    min-width: 250px;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(241, 196, 15, 0.3);
}

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

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

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.game-provider {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(241, 196, 15, 0.9);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover {
    background: #f39c12;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

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

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .section-title {
        font-size: 20px;
    }

    .games-grid {
        gap: 15px;
    }

    .game-card {
        flex: 0 0 200px;
        min-width: 200px;
    }

    .game-image {
        height: 100%;
    }

    .game-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }

    .play-button {
        opacity: 1;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        gap: 10px;
    }

    .game-card {
        flex: 0 0 150px;
        min-width: 150px;
        border-radius: 8px;
    }

    .game-image {
        height: 100%;
    }

    .game-title {
        font-size: 14px;
    }

    .game-provider {
        font-size: 10px;
    }

    .new-badge {
        padding: 3px 8px;
        font-size: 8px;
    }

    .play-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
.collection-banner {
    max-width: 1400px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.content-left {
    padding: 60px;
    position: relative;
}

.content-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="28" height="24" patternUnits="userSpaceOnUse"><polygon points="14,1 26,8 26,18 14,25 2,18 2,8" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.content-right {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="triangles" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,16 2,16" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23triangles)"/></svg>');
}

.banner-title {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 3;
}

.banner-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #f1c40f;
    font-weight: bold;
    position: relative;
    z-index: 3;
}

.banner-amount {
    font-size: 36px;
    font-weight: bold;
    color: #f1c40f;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 3;
}

.collect-btn {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
    position: relative;
    z-index: 3;
}

.collect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.4);
}

.cards-container {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-card {
    width: 180px;
    height: 250px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    position: relative;
    margin: 0 -20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    transform-origin: bottom center;
    overflow: hidden;
}

.player-card:nth-child(1) {
    transform: rotate(-15deg) translateY(20px);
    z-index: 1;
}

.player-card:nth-child(2) {
    transform: rotate(-5deg) translateY(10px);
    z-index: 2;
}

.player-card:nth-child(3) {
    transform: rotate(5deg) translateY(0px);
    z-index: 3;
}

.player-card:nth-child(4) {
    transform: rotate(15deg) translateY(10px);
    z-index: 2;
}

.player-card:nth-child(5) {
    transform: rotate(25deg) translateY(20px);
    z-index: 1;
}

.player-card:hover {
    transform: rotate(0deg) translateY(-20px) scale(1.05);
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '⚽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.7;
}

.player-card:nth-child(1) .card-image {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.player-card:nth-child(2) .card-image {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.player-card:nth-child(3) .card-image {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
}

.player-card:nth-child(4) .card-image {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.player-card:nth-child(5) .card-image {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.card-info {
    padding: 15px;
    background: white;
    color: #333;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.player-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.player-position {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.card-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.team-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr;
    }

    .content-left {
        padding: 40px 30px;
        text-align: center;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-amount {
        font-size: 28px;
    }

    .cards-container {
        padding: 20px;
    }

    .player-card {
        width: 120px;
        height: 170px;
        margin: 0 -15px;
    }

    .card-image {
        height: 120px;
    }

    .card-image::before {
        font-size: 40px;
    }

    .card-info {
        height: 50px;
        padding: 10px;
    }

    .player-name {
        font-size: 12px;
    }

    .player-position {
        font-size: 10px;
    }

    .card-rating {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .team-logo {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .content-left {
        padding: 30px 20px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-amount {
        font-size: 24px;
    }

    .collect-btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    .player-card {
        width: 100px;
        height: 140px;
        margin: 0 -10px;
    }

    .card-image {
        height: 100px;
    }

    .card-image::before {
        font-size: 30px;
    }
}

.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 60px 0 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-columns {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #bdc3c7;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-link {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-link:hover {
    color: #f1c40f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    color: #7f8c8d;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    color: #7f8c8d;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

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

    .footer-column-title {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

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

    .footer-column {
        text-align: center;
    }

    .footer-column-title {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-link {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .footer-disclaimer {
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

.content-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 32px;
    font-weight: bold;
    color: #f1c40f;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h3 {
    font-size: 24px;
    font-weight: bold;
    color: #ecf0f1;
    margin: 30px 0 20px 0;
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
}

p {
    font-size: 16px;
    color: #bdc3c7;
    margin-bottom: 20px;
    text-align: justify;
}

ul {
    margin: 20px 0;
    padding-left: 20px;
}

ol {
    margin: 20px 0;
    padding-left: 20px;
}

li {
    font-size: 16px;
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.6;
}

strong {
    color: #f1c40f;
    font-weight: bold;
}

.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

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

th {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

td {
    color: #ecf0f1;
    font-size: 14px;
}

tr:hover {
    background: rgba(241, 196, 15, 0.1);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(243, 156, 18, 0.1));
    border-left: 4px solid #f1c40f;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(123, 237, 159, 0.1));
    border-left: 4px solid #2ed573;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 196, 15, 0.3);
}

.feature-card h4 {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 18px;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 20px;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    background: rgba(241, 196, 15, 0.1);
    padding: 20px;
    font-weight: bold;
    color: #f1c40f;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(241, 196, 15, 0.2);
}

.faq-answer {
    padding: 20px;
    color: #bdc3c7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-container {
        padding: 20px 10px;
    }

    .content-section {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 20px;
        margin: 25px 0 15px 0;
    }

    p {
        font-size: 15px;
        text-align: left;
    }

    li {
        font-size: 15px;
    }

    .table-container {
        margin: 20px -20px;
        border-radius: 0;
    }

    th, td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-list li {
        padding-left: 50px;
    }

    .step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 20px 15px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    p, li {
        font-size: 14px;
    }

    th, td {
        padding: 8px 6px;
        font-size: 12px;
    }

    .highlight-box,
    .bonus-highlight {
        padding: 15px;
        margin: 20px -15px;
        border-radius: 0;
    }
}