/* LAYOUT #27 (CORRECTED): CIRCLE ORBIT - Orbital circular design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    background-attachment: fixed;
}

/* Header - NO STICKY */
header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.play-button {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    color: #fff !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: bold;
    animation: play-pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0,0,0,0.3);
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #b8b8ff;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Circle Orbit Section */
.orbit-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
}

.orbit-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
}

.orbit-section h2::before {
    content: '🎰';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    font-size: 3rem;
    opacity: 0.3;
}

.orbit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.orbit-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.orbit-card::before {
    content: '⭐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0;
    transition: all 0.4s;
}

.orbit-card:hover::before {
    opacity: 0.1;
    transform: translate(-50%, -50%) rotate(360deg);
}

.orbit-card:hover {
    transform: rotate(5deg) scale(1.1);
    border-color: #f5576c;
    box-shadow: 0 0 40px rgba(245, 87, 108, 0.5);
}

.orbit-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid rgba(102, 126, 234, 0.5);
}

.orbit-card h3 {
    color: #f5576c;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.orbit-card p {
    color: #b8b8ff;
    font-size: 1rem;
}

/* Content Section */
.content-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.content-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section h3 {
    color: #f5576c;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.content-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-align: justify;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section li {
    color: #b8b8ff;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.content-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5576c;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
}

.faq-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-item {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #f5576c;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #f5576c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #e0e0e0;
}

/* Reviews Section */
.reviews-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
}

.reviews-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.review-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    color: #f5576c;
    font-weight: bold;
    font-size: 1.1rem;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #0f0c29 0%, #302b63 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: #f5576c;
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: #b8b8ff;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.3);
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .orbit-card {
        border-radius: 20px;
        aspect-ratio: auto;
    }
}
