/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    color: #ffffff;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1b36 50%, #0f0515 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: rgba(26, 13, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #e91e63;
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-brand h1 {
    color: #e91e63;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(233, 30, 99, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #e91e63;
    background-color: rgba(233, 30, 99, 0.1);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e91e63;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1536 30%, #16213e 70%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 2rem;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e91e63, #9c27b0, #ff4081);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-video {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.hero-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1536 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.logo-showcase {
    text-align: center;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(233, 30, 99, 0.4));
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    color: #e91e63;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    text-shadow: 0 2px 10px rgba(233, 30, 99, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-video video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-secondary:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

.btn-youtube {
    background: #ff0000;
    color: white;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.btn-app {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
}

.btn-app:hover {
    background: linear-gradient(45deg, #9c27b0, #e91e63);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* YouTube Section */
.youtube-section {
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1536 100%);
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.youtube-embed iframe {
    width: 100%;
    height: 315px;
    border-radius: 15px;
}

.youtube-info h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.youtube-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.youtube-info li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, #16213e 0%, #1a0d2e 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem;
}

.game-preview {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    padding: 2rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    position: relative;
}

.game-preview h4 {
    color: white;
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.game-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Featured / Highlight Game Card */
.game-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #1a1a1a 0%, #1e0a2e 100%);
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.25), 0 0 60px rgba(233, 30, 99, 0.15);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.game-card--featured .game-preview {
    width: 220px;
    min-height: 180px;
    height: 100%;
    margin: 0;
    border-radius: 13px 0 0 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b8860b, #ffd700, #e91e63);
    position: relative;
    padding: 2rem 1rem;
}

.game-preview--featured .game-icon {
    font-size: 3.5rem;
    margin-bottom: 0.25rem;
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1a0d2e;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 3px 14px;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.game-card--featured h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.game-card--featured p {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 0;
}

.game-card--featured .btn-featured {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #1a0d2e;
    font-weight: 800;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-right: 1.5rem;
    text-decoration: none;
    display: inline-block;
}

.game-card--featured .btn-featured:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffe44d, #ffd700);
}

.game-card--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.35), 0 5px 20px rgba(233, 30, 99, 0.2);
}

@media (max-width: 768px) {
    .game-card--featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0;
    }

    .game-card--featured .game-preview {
        width: 100%;
        border-radius: 13px 13px 0 0;
        min-height: unset;
    }

    .game-card--featured h3,
    .game-card--featured p {
        padding: 0 1.5rem;
    }

    .game-card--featured h3 {
        padding-top: 1rem;
    }

    .game-card--featured .btn-featured {
        margin: 1rem 1.5rem 1.5rem;
        display: block;
        text-align: center;
    }
}

/* Social Section in Games */
.social-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(233, 30, 99, 0.2);
}

.social-section h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.social-section p {
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-section .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Apps Section */
.apps-section {
    background: linear-gradient(135deg, #1a0d2e 0%, #16213e 100%);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.app-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.app-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.app-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0f0515 0%, #1a0d2e 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    transform: translateX(10px);
}

.social-icon {
    font-size: 1.5rem;
}

.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    color: #e91e63;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0515 0%, #1a0d2e 100%);
    border-top: 2px solid #e91e63;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .youtube-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 120px;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e91e63;
    text-align: center;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-section {
    margin-bottom: 3rem;
    background: rgba(26, 13, 46, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    color: #e91e63;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e91e63;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #ff6b9d;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.contact-info {
    background: rgba(233, 30, 99, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #ff6b9d;
}

.legal-section a {
    color: #e91e63;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: #ff6b9d;
    border-bottom-color: #ff6b9d;
}

.back-link {
    text-align: center;
    margin: 3rem 0;
}

.nav-link.active {
    color: #e91e63 !important;
    background: rgba(233, 30, 99, 0.2);
    border-radius: 6px;
}
