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 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b3d 50%, #1a0f2e 100%);
    font-family: 'Arial', sans-serif;
    color: white;
    min-height: 100vh;
    padding: 20px;
}

.site-header {
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-text {
    color: #ff6b35;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:hover {
    color: #ff6b35;
}

.nav-menu li a.active {
    color: #ff6b35;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

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

.login-btn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.login-btn:hover {
    color: #ff6b35;
}

.register-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

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

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

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

/* Banner Styles */
.site-banner{
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 400px;
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-title .highlight {
    color: #ff6b35;
}

.banner-amount {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    color: white;
    margin: 10px 0;
}

.banner-spins {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 30px;
}

.signup-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.banner-visual {
    flex: 0 0 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.banner-visual::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.coin-icon {
    font-size: 6rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    color: #ffd700;
    animation: float 3s ease-in-out infinite;
}

.floating-coin:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-coin:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-coin:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -200%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }

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

    .auth-buttons {
        display: none;
    }

    .nav-menu.active ~ .auth-buttons {
        display: none;
    }

    .site-banner{
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin: 30px auto;
    }

    .banner-visual {
        flex: none;
        width: 250px;
        height: 250px;
    }

    .coin-icon {
        font-size: 4rem;
    }

    .floating-coins {
        display: none;
    }
}

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

    .site-banner{
        padding: 0 15px;
    }

    .banner-visual {
        width: 200px;
        height: 200px;
    }

    .coin-icon {
        font-size: 3rem;
    }
}

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

.site-header {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffd700, #ffed4a, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.top-games-3 {
    margin-bottom: 40px;
    margin-top: 40px
}

.section-content {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-list {
    list-style: none;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700, #ffed4a);
}

.feature-item::after {
    content: '★';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 1.2em;
    opacity: 0.7;
}

.character-box {
    flex: 0 0 300px;
    height: 200px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7, #9333ea);
    border-radius: 20px;
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.character-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.character-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@media (max-width: 768px) {
    .section {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .character-box {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .feature-item {
        padding: 15px;
    }

    body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .character-box {
        height: 150px;
    }

    .character-emoji {
        font-size: 3rem;
    }
}

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

.top-games_list{
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ff6b35;
}

.game-card img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-provider {
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 500;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
    display: block;
    width: 100%;
}

.play-for-fun {
    font-size: 0.8rem;
    color: #ccc;
    margin: 0;
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .top-games_list{
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }
}

.content-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
}

.content-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-wrapper p {
    margin-bottom: 1.2em;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.content-wrapper h2 {
    color: #ff6b35;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    margin: 2em 0 1em 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-wrapper h3 {
    color: #ffd700;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: bold;
    margin: 1.5em 0 1em 0;
}

.content-wrapper ul {
    margin: 1.5em 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.8em;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.content-wrapper ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 0.9em;
}

.content-wrapper ol {
    margin: 1.5em 0;
    padding-left: 20px;
    color: #e0e0e0;
}

.content-wrapper ol li {
    margin-bottom: 0.8em;
    font-size: 1.1rem;
}

.table-wrapper {
    overflow-x: auto;
    margin: 2em 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.content-wrapper table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: transparent;
}

.content-wrapper table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: top;
}

.content-wrapper table tr:first-child td {
    background: rgba(255, 107, 53, 0.2);
    color: #ffd700;
    font-weight: bold;
    border-bottom: 2px solid #ff6b35;
}

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

.content-wrapper table p {
    margin: 0;
    color: inherit;
}

.content-wrapper strong {
    color: #ffd700;
    font-weight: bold;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ff6b35;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-provider {
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 500;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
    display: block;
    width: 100%;
}

.play-for-fun {
    font-size: 0.8rem;
    color: #ccc;
    margin: 0;
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .top-games_list{
        padding: 30px 0;
    }

    .content-section {
        padding: 30px 0;
    }

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

    .content-wrapper h2 {
        font-size: 1.5rem;
        margin: 1.5em 0 0.8em 0;
    }

    .content-wrapper h3 {
        font-size: 1.3rem;
        margin: 1.2em 0 0.8em 0;
    }

    .content-wrapper p,
    .content-wrapper ul li,
    .content-wrapper ol li {
        font-size: 1rem;
    }

    .table-wrapper {
        margin: 1.5em -10px;
        border-radius: 0;
    }

    .content-wrapper table {
        min-width: 400px;
    }

    .content-wrapper table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .content-wrapper {
        padding: 0 5px;
    }

    .table-wrapper {
        margin: 1.5em -15px;
    }

    .content-wrapper table {
        min-width: 350px;
    }

    .content-wrapper table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    padding: 50px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-logo .logo-text {
    color: #ff6b35;
}

.footer-columns {
    display: flex;
    gap: 50px;
    flex: 1;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 200px;
}

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6b35;
}

@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-columns {
        gap: 30px;
    }

    .footer-column {
        min-width: 150px;
    }
}

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

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

    .footer-column {
        min-width: auto;
    }

    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-logo .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

