/* Starlight Princess Theme - donaldbet 2026 */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-purple: #6B21A8;
    --secondary-purple: #9333EA;
    --accent-pink: #EC4899;
    --accent-gold: #F59E0B;
    --dark-bg: #1E1B4B;
    --darker-bg: #0F0A1F;
    --light-text: #F8FAFC;
    --muted-text: #CBD5E1;
    --gradient-cosmic: linear-gradient(135deg, #6B21A8 0%, #9333EA 50%, #EC4899 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-pink);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header Navigation */
.site-header {
    background: rgba(30, 27, 75, 0.95);
    padding: 15px 0;
    border-bottom: 2px solid var(--secondary-purple);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--light-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--darker-bg) !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    color: var(--darker-bg) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 10, 31, 0.9) 0%, rgba(15, 10, 31, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--muted-text);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.3), rgba(30, 27, 75, 0.8));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
}

.game-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.game-card-content {
    padding: 25px;
}

.game-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.game-card-content p {
    color: var(--muted-text);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.game-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-pink);
    font-weight: 500;
}

/* Promo Banner */
.promo-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
}

.promo-banner img {
    width: 100%;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.2), rgba(30, 27, 75, 0.6));
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cosmic);
    border-radius: 50%;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

/* Payment Methods */
.payment-section {
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.payment-icons img {
    max-height: 60px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.payment-icons img:hover {
    filter: brightness(1.1);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.2), rgba(30, 27, 75, 0.6));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    font-size: 1rem;
    color: var(--light-text);
}

.review-info span {
    font-size: 0.85rem;
    color: var(--muted-text);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-text {
    color: var(--muted-text);
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: var(--muted-text);
    margin-top: 10px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.2), rgba(30, 27, 75, 0.6));
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--muted-text);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.3), rgba(30, 27, 75, 0.8));
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.author-title {
    color: var(--secondary-purple);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-bio {
    color: var(--muted-text);
}

/* License Section */
.license-section {
    text-align: center;
}

.license-badge {
    max-width: 200px;
    margin: 30px auto;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 2px solid var(--secondary-purple);
}

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

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(147, 51, 234, 0.3);
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-badges img {
    max-height: 60px;
}

.footer-text {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: rgba(30, 27, 75, 0.5);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 10px;
    color: var(--muted-text);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--muted-text);
}

.breadcrumb-list li:last-child {
    color: var(--accent-gold);
}

/* Inner Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-purple) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Area */
.content-area {
    padding: 60px 0;
}

.content-area h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin: 40px 0 20px;
}

.content-area h3 {
    font-size: 1.4rem;
    color: var(--secondary-purple);
    margin: 30px 0 15px;
}

.content-area p {
    margin-bottom: 20px;
    color: var(--muted-text);
}

.content-area ul, .content-area ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--muted-text);
}

.content-area li {
    margin-bottom: 10px;
}

.content-image {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    display: block;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.info-table th {
    background: rgba(107, 33, 168, 0.3);
    color: var(--accent-gold);
}

.info-table td {
    color: var(--muted-text);
}

/* Sitemap Page */
.sitemap-section {
    padding: 60px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.sitemap-col h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-purple);
}

.sitemap-col ul {
    list-style: none;
}

.sitemap-col li {
    margin-bottom: 12px;
}

.sitemap-col a {
    color: var(--muted-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-col a::before {
    content: '★';
    color: var(--secondary-purple);
    font-size: 0.8rem;
}

.sitemap-col a:hover {
    color: var(--accent-pink);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 50px 0;
    }
}
