/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-bottom: 2px solid #e94560;
}

.logo {
    font-size: 2.5rem;
    color: #e94560;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 25px;
    border: 2px solid #e94560;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #e94560, #ff6b8a);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.nav-link:hover {
    background: linear-gradient(45deg, #ff6b8a, #e94560);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.nav-link:active {
    transform: translateY(-1px);
}

/* Shine effect for buttons */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.nav-link:hover::before {
    left: 100%;
}

/* Main Content Styles */
.main-content {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    color: #e94560;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-text {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: normal;
}

/* Gift Code Section */
.gift-code-section {
    text-align: center;
    margin-bottom: 40px;
}

.gift-code-box {
    background: rgba(233, 69, 96, 0.2);
    border: 2px dashed #e94560;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
}

.gift-code {
    font-size: 1.5rem;
    color: #e94560;
    font-weight: bold;
    letter-spacing: 2px;
}

/* App Info Table */
.app-info-section {
    margin-bottom: 40px;
}

.app-info-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.app-info-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-info-table tr:last-child td {
    border-bottom: none;
}

.info-label {
    font-weight: bold;
    color: #e94560;
    width: 30%;
    text-transform: uppercase;
}

.info-value {
    color: #ffffff;
}

.info-value.bonus {
    color: #00ff88;
    font-weight: bold;
}

/* Description Section */
.description-section,
.why-section,
.players-section,
.play-anytime-section,
.how-to-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.description-text,
.why-text,
.play-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.description-text:last-child,
.why-text:last-child,
.play-text:last-child {
    margin-bottom: 0;
}

/* Players List */
.players-list {
    list-style: none;
    padding: 0;
}

.players-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    text-align: left;
}

.players-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* How to Section */
.how-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e94560;
}

.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.steps-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(233, 69, 96, 0.1);
    border-left: 4px solid #e94560;
    border-radius: 0 5px 5px 0;
    position: relative;
    padding-left: 50px;
}

.steps-list li:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #e94560;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 30px;
    background: rgba(233, 69, 96, 0.15);
    border-radius: 10px;
    margin-top: 20px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #e94560, #ff6b8a);
    border: 2px solid #e94560;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff6b8a, #e94560);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Shine effect for CTA button */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #e94560;
    margin-top: 40px;
}

.footer p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer a {
    color: #e94560;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .app-info-table {
        font-size: 0.9rem;
    }
    
    .app-info-table td {
        padding: 12px 15px;
    }
    
    .gift-code {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* SEO Text for Ranking */
.seo-content {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Animation for better UX */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e94560;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #ff6b8a;
}