* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1f3b 0%, #0d1128 100%);
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffcc00;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #e0e0ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #2a325e 0%, #1a1f3b 100%);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffcc00;
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 25px;
    color: #e0e0ff;
}

.tagline {
    font-size: 1.2rem;
    color: #a0a0ff;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    color: #ffcc00;
}

/* Game Section */
.game-section {
    padding: 40px 20px;
    text-align: center;
}

.game-section h2 {
    font-size: 2.2rem;
    color: #ffcc00;
    margin-bottom: 30px;
}

.game-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
    border: 2px solid #ffcc00;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.2);
}

.slot-machine {
    background: linear-gradient(145deg, #2c2f4a, #1c2039);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slot-display {
    background: #0d1120;
    height: 200px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    border: 3px solid #ffcc00;
}

.slot-reel {
    width: 100px;
    height: 150px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.points-display {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #ffcc00;
}

.spin-button {
    background: linear-gradient(to bottom, #ffcc00, #ff9900);
    color: #1a1f3b;
    border: none;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.spin-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.spin-button:active {
    transform: translateY(1px);
}

.disclaimer {
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid #ff3333;
}

.disclaimer p {
    margin: 10px 0;
    color: #ff9999;
}

/* Info Section */
.info-section {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.05);
}

.info-section h2 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 25px;
}

.info-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.8;
}

.remember {
    font-style: italic;
    color: #ffcc00;
    border-left: 3px solid #ffcc00;
    padding-left: 15px;
}

/* Expectations Section */
.expectations {
    padding: 50px 20px;
}

.expectations h2 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 30px;
    text-align: center;
}

.expectation-list {
    max-width: 800px;
    margin: 0 auto 30px;
}

.expectation-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.expectation-item i {
    color: #ffcc00;
    font-size: 1.5rem;
    margin-right: 15px;
}

.enjoy-text {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #a0a0ff;
    max-width: 800px;
    margin: 0 auto;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.05);
}

.disclaimer-section h2 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 25px;
    text-align: center;
}

.disclaimer-points {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-item {
    margin-bottom: 30px;
}

.disclaimer-item h3 {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffcc00;
    display: flex;
    align-items: center;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #e0e0ff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
}

.responsible-gaming {
    text-align: right;
}

.responsible-gaming p {
    margin-bottom: 10px;
    color: #ffcc00;
}

.support-links {
    display: flex;
    flex-direction: column;
}

.support-links a {
    color: #e0e0ff;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #ffcc00;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 5px 0;
    color: #a0a0ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    
    .slot-display {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    .slot-reel {
        width: 80px;
        height: 100px;
        margin: 10px 0;
        font-size: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links, .responsible-gaming {
        margin: 20px 0;
    }
}