/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #1a1a2e;
    border-color: #ffd700;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #f59e0b, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.btn-outline:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border-color: #ffd700;
    font-size: 18px;
    padding: 16px 32px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.atom-icon {
    font-size: 2rem;
    margin-right: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    color: #ffffff;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-cards {
    position: relative;
    width: 300px;
    height: 300px;
}

.card {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    left: 50px;
    color: #000;
    animation-delay: 0s;
}

.card-2 {
    top: 50px;
    right: 20px;
    color: #e53e3e;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 80px;
    right: 60px;
    color: #e53e3e;
    animation-delay: 3s;
}

.card-4 {
    bottom: 40px;
    left: 20px;
    color: #000;
    animation-delay: 4.5s;
}

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

.coin {
    position: absolute;
    font-size: 1.5rem;
    animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 2s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Welcome Bonus */
.welcome-bonus {
    padding: 3rem 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(245, 158, 11, 0.1));
}

.bonus-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.bonus-content h2 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.bonus-description {
    color: #cccccc;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    border-radius: 2px;
}

/* Games Section */
.games {
    padding: 5rem 0;
}

.games-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tab.active {
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #1a1a2e;
    border-color: #ffd700;
}

.tab:hover:not(.active) {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.game-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.game-info h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.game-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.game-rating {
    color: #ffd700;
    margin-bottom: 1rem;
}

.game-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Promotions */
.promotions {
    padding: 5rem 0;
    background: rgba(255, 215, 0, 0.02);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-primary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(245, 158, 11, 0.1));
    border-color: rgba(255, 215, 0, 0.3);
}

.promo-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.promo-card h3 {
    margin: 1rem 0;
    color: #ffffff;
}

.promo-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.promo-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

/* Features */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background: rgba(255, 215, 0, 0.02);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.payment-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

/* Winners Ticker */
.winners {
    padding: 2rem 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(245, 158, 11, 0.1));
    overflow: hidden;
}

.winners-ticker {
    white-space: nowrap;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.winner {
    display: inline-block;
    margin-right: 4rem;
    font-size: 1.1rem;
    color: #ffffff;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.licenses {
    display: grid;
    gap: 0.5rem;
}

.license {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .bonus-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .casino-cards {
        width: 250px;
        height: 250px;
    }
    
    .card {
        width: 60px;
        height: 90px;
        font-size: 1.5rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .atom-casino-info {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.atom-casino-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.info-table-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 3rem 0;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 30, 0.95));
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    transform-style: preserve-3d;
    animation: tableGlow 4s ease-in-out infinite alternate;
}

@keyframes tableGlow {
    0% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 30px rgba(255, 215, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 50px rgba(255, 215, 0, 0.2);
    }
}

.info-table::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #f59e0b, #ffd700);
    border-radius: 27px;
    z-index: -1;
    animation: borderRotate 6s linear infinite;
}

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

.info-table tr {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.info-table tr::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-table tr:not(:last-child)::before {
    opacity: 1;
}

.info-table tr:nth-child(even) {
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.02) 0%, 
        rgba(255, 215, 0, 0.05) 50%, 
        rgba(255, 215, 0, 0.02) 100%);
}

.info-table tr:hover {
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 237, 78, 0.15) 50%, 
        rgba(245, 158, 11, 0.1) 100%);
    transform: translateX(10px) scale(1.02);
    box-shadow: 
        10px 0 30px rgba(255, 215, 0, 0.2),
        -5px 0 20px rgba(0, 0, 0, 0.3);
}

.info-table td {
    padding: 25px 30px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    border: none;
    vertical-align: middle;
    position: relative;
    font-weight: 500;
}

.info-table td:first-child {
    font-weight: 700;
    width: 40%;
    position: relative;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    font-size: 17px;
}

.info-table td:first-child::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        #ffd700 20%,
        #ffed4e  50%,
        #f59e0b  80%,
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

.info-table td:last-child {
    font-weight: 400;
    color: #e8e8e8;
    width: 60%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.info-table td:last-child::before {
    content: '▶';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.info-table tr:hover td:last-child::before {
    opacity: 1;
    left: -10px;
}

.info-table td:last-child a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 600;
    position: relative;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-table td:last-child a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.info-table td:last-child a:hover {
    color: #1a1a2e;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
    text-shadow: none;
}

.info-table td:last-child a:hover::before {
    opacity: 1;
}

.info-section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
}

.info-section-title::before,
.info-section-title::after {
    content: '💎';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.info-section-title::before {
    left: -60px;
    animation-delay: 0s;
}

.info-section-title::after {
    right: -60px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.4;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.info-section-title .title-underline {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #f59e0b, #ffd700);
    border-radius: 2px;
    animation: underlineFlow 3s ease-in-out infinite;
}

@keyframes underlineFlow {
    0%, 100% { width: 120px; }
    50% { width: 200px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-table {
        font-size: 14px;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .info-table td {
        padding: 20px 20px;
        display: block;
        width: 100% !important;
    }
    
    .info-table td:first-child {
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
        margin-bottom: 15px;
        font-size: 16px;
    }
    
    .info-table td:first-child::after {
        display: none;
    }
    
    .info-table td:last-child {
        padding-top: 0;
    }
    
    .info-table tr:hover {
        transform: translateX(5px) scale(1.01);
    }
    
    .info-section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        letter-spacing: 2px;
    }
    
    .info-section-title::before,
    .info-section-title::after {
        display: none;
    }
    
    .atom-casino-info {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .info-table {
        font-size: 13px;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .info-table td {
        padding: 15px 15px;
    }
    
    .info-section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
}
}