/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff0f5 0%, #ffd1dc 100%);
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    color: #222;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: all 0.3s ease;
}

a:hover {
    color: #004080;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #eaeaea;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.15);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
}

header.sticky {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.2);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    margin: 0 15px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ff1493;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 10px;
}

.hamburger-icon span:nth-child(3) {
    top: 20px;
}

.hamburger-icon.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-icon.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 80px;
    height: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

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

.logo-container h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ff1493; /* DeepPink color */
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 20, 147, 0.2);
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ff1493;
    border: 2px solid #ff1493;
    background-color: transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.header-btn:hover {
    background-color: rgba(255, 20, 147, 0.1);
    transform: translateY(-2px);
    color: #ff1493;
}

.header-btn.primary {
    background-color: #ff1493;
    color: white;
}

.header-btn.primary:hover {
    background-color: #ff69b4;
    border-color: #ff69b4;
    color: white;
}

.main-nav {
    background-color: rgba(255, 20, 147, 0.05);
    padding: 10px 0;
    border-radius: 5px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #ff1493;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ff1493;
    transition: all 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
    padding: 0;
    border-radius: 0 0 10px 10px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px); /* Full screen minus header height */
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>');
    background-size: 300px 300px;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-text {
    flex: 1;
    text-align: left;
    padding-left: 20px;
    max-width: 600px;
}

.hero h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.bonus-tag {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.feature i {
    margin-right: 8px;
    font-size: 16px;
}

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

.learn-more-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 0px; /* Increased padding to make room for the badge */
    animation: float 6s ease-in-out infinite;
}

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

.logo-container-hero {
    margin-bottom: 30px;
    position: relative;
}

.app-preview {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    transform: rotate(3deg);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.app-preview:hover {
    transform: rotate(0deg) scale(1.05);
}

.withdrawal-badge {
    position: relative;
    bottom: 0;
    right: 0;
    background-color: white;
    color: #ff1493;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    z-index: 1;
    width: auto;
    max-width: 90%;
    margin: 15px auto 0;
    text-align: center;
}

.download-btn {
    display: inline-block;
    background-color: #ff1493;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.download-btn:hover {
    background-color: #ff69b4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.6);
    color: white;
}

.fast-withdrawal {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

/* Game Rates Section */
.game-rates, .starline-rates, .jackpot-rates {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    padding: 40px;
}

.game-rates h2, .starline-rates h2, .jackpot-rates h2 {
    text-align: center;
    color: #ff1493;
    font-size: 28px;
}

.rates-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.rate-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    padding: 20px;
    width: calc(25% - 20px);
    min-width: 200px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.rate-card h3 {
    color: #ff1493;
    margin-bottom: 10px;
}

.rate-card p {
    font-size: 18px;
    font-weight: 600;
}

/* How To Play Section */
.how-to-play {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    padding: 40px;
}

.how-to-play h2 {
    text-align: center;
    color: #ff1493;
    font-size: 28px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.step-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    padding: 30px;
    width: calc(25% - 30px);
    min-width: 220px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.step-icon {
    background-color: #ff1493;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.step-card h3 {
    color: #ff1493;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    padding: 40px;
}

.faq h2 {
    text-align: center;
    color: #ff1493;
    font-size: 28px;
    margin-bottom: 30px;
}

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

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.faq-item h3 {
    color: #ff1493;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3:after {
    content: '+';
    font-size: 24px;
    color: #ff1493;
}

.faq-item.active h3:after {
    content: '-';
}

.faq-content {
    padding-top: 15px;
}

.faq-content p {
    margin-bottom: 10px;
}

.faq-content ul, .faq-content ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

.support {
    text-align: center;
    margin-top: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-btn {
    display: inline-block;
    background-color: #ff1493;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ff69b4;
    color: white;
}

.contact-btn i {
    margin-right: 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
}

.download-footer {
    display: inline-block;
    background-color: #ff1493;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.download-footer:hover {
    background-color: #ff69b4;
    color: white;
}

/* Floating Download Button */
.floating-download {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.6);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.8);
    color: white;
}

.floating-btn i {
    margin-right: 10px;
    font-size: 20px;
}

/* Pulse animation for the button */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 20, 147, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 20, 147, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 20, 147, 0.6);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .rate-card, .step-card {
        width: calc(33.33% - 20px);
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .app-preview {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 150px);
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .logo-container {
        flex-direction: row;
        align-items: center;
    }
    
    .logo-img {
        margin-right: 10px;
        margin-bottom: 0;
        width: 40px;
        height: 40px;
    }
    
    .logo-container h1 {
        font-size: 20px;
    }
    
    .hamburger-menu {
        display: block;
        order: 3;
    }
    
    .header-actions {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 999;
    }
    
    .header-actions.active {
        right: 0;
    }
    
    .main-nav {
        position: fixed;
        top: 140px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 998;
    }
    
    .main-nav.active {
        height: auto;
        padding: 20px 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        font-size: 16px;
        padding: 12px;
        display: block;
        border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 20, 147, 0.05);
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero h2 {
        font-size: 30px;
        line-height: 1.4;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .rate-card, .step-card {
        width: calc(50% - 20px);
    }
    
    .bonus-tag {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: calc(100vh - 120px);
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .header-btn {
        width: 100%;
    }
    
    .main-nav ul {
        gap: 5px;
    }
    
    .main-nav a {
        font-size: 13px;
        padding: 5px;
    }
    
    .rate-card, .step-card {
        width: 100%;
    }
    
    .hero h2 {
        font-size: 26px;
        line-height: 1.4;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .bonus-tag {
        font-size: 14px;
        padding: 8px 16px;
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .download-btn, .learn-more-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
    }
    
    .logo-container-hero {
        margin-bottom: 15px;
    }
    
    .app-preview {
        max-width: 180px;
        margin-bottom: 0;
    }
    
    .withdrawal-badge {
        font-size: 14px;
        padding: 8px 15px;
        margin-top: 10px;
        width: 90%;
        position: relative;
    }
    
    .hero-image {
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-download {
        bottom: 20px;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}
