/* ===== MOBILIM.NET TEMA ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1DB954;
    --primary-dark: #169944;
    --secondary: #FF6B35;
    --accent: #FFD23F;
    --dark: #0A0E27;
    --dark-light: #151935;
    --dark-lighter: #1F2544;
    --text: #FFFFFF;
    --text-muted: #B3B3B3;
    --border: #2A2F4F;
    --gradient-1: linear-gradient(135deg, #1DB954 0%, #1ED760 100%);
    --gradient-2: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-3: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LOADING ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-logo i {
    font-size: 48px;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.loading-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.loading-content h2 span {
    color: var(--primary);
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--dark-lighter);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s;
}

.main-header.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
}

.logo i {
    font-size: 32px;
    color: var(--primary);
}

.logo .domain {
    color: var(--primary);
    font-size: 20px;
}

.main-navigation {
    display: flex;
    gap: 5px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-item:hover {
    color: var(--text);
    background: var(--dark-lighter);
}

.nav-item.active {
    color: var(--text);
    background: var(--gradient-1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-header.btn-primary {
    background: var(--gradient-1);
    color: var(--text);
}

.btn-header.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(29,185,84,0.1)"/></svg>');
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.slide-text {
    max-width: 700px;
}

.slide-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(29, 185, 84, 0.2);
    border: 1px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-text h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide-text .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-text p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-slide {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-slide.primary {
    background: var(--gradient-1);
    color: var(--text);
}

.btn-slide.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.4);
}

.btn-slide.secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-slide.secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark-light);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--dark-lighter);
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text);
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(29, 185, 84, 0.2);
    border: 1px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* ===== MUSIC SECTION ===== */
.music-section {
    background: var(--dark-light);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.music-card {
    background: var(--dark-lighter);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.music-cover {
    position: relative;
    height: 280px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.music-info {
    padding: 20px;
}

.music-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.music-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.music-stats {
    font-size: 13px;
    color: var(--text-muted);
}

.music-stats i {
    color: var(--primary);
    margin-right: 5px;
}

/* ===== SOCIAL SECTION ===== */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--dark-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text);
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--dark-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--dark-lighter);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.6);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.video-live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF0000;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.video-details {
    padding: 20px;
}

.video-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-details p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== GAMES SECTION ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--dark-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.game-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text);
    margin: 0 auto 25px;
}

.game-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-game {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--gradient-2);
    color: var(--text);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-game:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--dark-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    background: var(--dark-lighter);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s;
    text-align: center;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text);
    margin: 0 auto 20px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-form-box {
    background: var(--dark-lighter);
    padding: 40px;
    border-radius: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: var(--text);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark-light);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary);
}

.footer-logo span {
    color: var(--primary);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom i {
    color: var(--secondary);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20% { transform: scale(0.9); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .slide-text h1 {
        font-size: 40px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

