/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Entry Screen Overlay */
.entry-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
}

.entry-screen.hidden {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.entry-content {
    text-align: center;
    animation: entryFadeIn 0.8s ease;
}

.entry-logo {
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(153, 69, 255, 0.5));
}

.entry-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.enter-button {
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
    animation: pulseButton 2s ease-in-out infinite;
}

.enter-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(153, 69, 255, 0.5);
}

.enter-button i {
    transition: transform 0.3s ease;
}

.enter-button:hover i {
    transform: translateX(5px);
}

@keyframes entryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(153, 69, 255, 0.5),
                    0 0 60px rgba(20, 241, 149, 0.3);
    }
}

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050507;
    --bg-card: rgba(15, 10, 25, 0.6);
    --bg-card-hover: rgba(20, 15, 35, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #9b9ba8;
    --purple-main: #9945ff;
    --purple-light: #b47fff;
    --purple-dark: #7030cc;
    --glow-purple: rgba(153, 69, 255, 0.4);
    --glow-strong: rgba(153, 69, 255, 0.6);
    --gradient-purple: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at bottom, #1b1525 0%, var(--bg-dark) 100%);
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.background-glow::before,
.background-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.background-glow::before {
    width: 600px;
    height: 600px;
    background: var(--purple-main);
    top: -300px;
    right: -300px;
}

.background-glow::after {
    width: 400px;
    height: 400px;
    background: var(--purple-dark);
    bottom: -200px;
    left: -200px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 30px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.9); }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    background: var(--glow-purple);
    border-radius: 50%;
    animation: floating 15s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    right: 20%;
    top: 50%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 50%;
    bottom: 20%;
    animation-delay: 10s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(10px) translateX(-10px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-10px) translateX(20px);
        opacity: 0.5;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(153, 69, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--glow-purple);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

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

.nav-menu a:hover {
    color: var(--purple-light);
}

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

/* Sticky Stats */
.sticky-stats {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(153, 69, 255, 0.2);
    z-index: 999;
    padding: 1.5rem 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
}

.sticky-stats.visible {
    transform: translateY(0);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 0 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-purple);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    filter: blur(10px);
}

.stat-item:hover .stat-icon-wrapper::before {
    opacity: 0.5;
}

.stat-icon-wrapper i {
    color: var(--purple-light);
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 4rem; /* Extra Platz für Navbar + Visualizer */
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

/* Avatar Section */
.avatar-section {
    margin-bottom: 2rem;
}

.avatar-glow-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.avatar-glow,
.avatar-glow-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
}

.avatar-glow {
    background: radial-gradient(circle, var(--purple-main), transparent);
    filter: blur(20px);
    opacity: 0.5;
}

.avatar-glow-pulse {
    background: radial-gradient(circle, var(--purple-light), transparent);
    filter: blur(25px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

.avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 15px auto;
    border-radius: 50%;
    border: 2px solid var(--purple-main);
    overflow: hidden;
    box-shadow: 0 0 30px var(--glow-purple);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.avatar-image:hover {
    transform: scale(1.05);
}

.hero-title {
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-family: 'Russo One', 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
}

.glow-text {
    background: linear-gradient(45deg, #9945ff, #14f195, #9945ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 30px rgba(153, 69, 255, 0.5));
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.title-main {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 50px var(--glow-purple);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.followers-container {
    display: inline-block;
}

.followers-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.2s ease, transform 0.2s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.followers-badge:hover {
    background: rgba(153, 69, 255, 0.2);
    box-shadow: 0 5px 20px var(--glow-purple);
    transform: translateY(-2px);
}

.followers-count {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--purple-light);
}

/* Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.title-gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Profile Section */
.profile-section {
    padding: 5rem 0;
    position: relative;
}

.expertise-section {
    margin-bottom: 3rem;
}

.expertise-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--purple-light);
}

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

.expertise-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, var(--glow-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--purple-main);
    box-shadow: 0 10px 40px rgba(153, 69, 255, 0.3);
}

.expertise-card:hover::before {
    opacity: 0.1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--purple-main), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.expertise-card:hover .card-glow {
    opacity: 0.2;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(153, 69, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--purple-light);
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    color: var(--text-secondary);
}

.portfolio-info {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.portfolio-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    margin: 2rem 0;
}

.info-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--purple-main);
    font-size: 1.5rem;
}

.roblox-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.roblox-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-purple);
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, rgba(153, 69, 255, 0.02), transparent);
}

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

.game-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-main);
    box-shadow: 0 20px 40px rgba(153, 69, 255, 0.4);
}

.game-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.upload-game-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.05), rgba(153, 69, 255, 0.1));
    cursor: pointer;
    transition: background 0.3s;
}

.upload-game-image:hover {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(153, 69, 255, 0.2));
}

.upload-game-image i {
    font-size: 2rem;
    color: var(--purple-light);
    margin-bottom: 0.5rem;
}

.upload-game-image p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(153, 69, 255, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.game-emoji {
    font-size: 1.2rem;
}

.sale-badge {
    display: inline-block;
    background: rgba(20, 241, 149, 0.1);
    color: #14f195;
    border: 1px solid rgba(20, 241, 149, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.game-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.game-stats i {
    color: var(--purple-light);
}

.game-stats span {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.game-stats span[style*="opacity: 0.7"] {
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        opacity: 0.5; 
        filter: brightness(0.9);
    }
    50% { 
        opacity: 0.8; 
        filter: brightness(1.1);
    }
}

.game-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.3);
    color: var(--purple-light);
    padding: 0.8rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.game-link:hover {
    background: rgba(153, 69, 255, 0.2);
    border-color: var(--purple-main);
    box-shadow: 0 5px 20px var(--glow-purple);
}

/* Refresh Stats Button */
.refresh-stats-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: rgba(255, 150, 150, 0.9);
    padding: 0.7rem;
    border-radius: 10px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.8rem;
}

.refresh-stats-btn:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.5);
    transform: translateY(-2px);
}

.refresh-stats-btn i {
    font-size: 0.9rem;
}

.refresh-stats-btn:active i {
    animation: spin 0.6s ease-in-out;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.games-cta {
    text-align: center;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.games-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-button {
    background: var(--gradient-purple);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-purple);
}

/* Video Section */
.videos-section {
    padding: 5rem 0;
}

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

.video-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.video-card:hover {
    transform: scale(1.05);
    border-color: var(--purple-main);
    box-shadow: 0 15px 40px rgba(153, 69, 255, 0.4);
}

.video-placeholder {
    height: 200px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.05), rgba(153, 69, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.upload-area {
    text-align: center;
}

.upload-area i {
    font-size: 3rem;
    color: var(--purple-light);
    margin-bottom: 1rem;
}

.upload-area h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.upload-area p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.video-title {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.video-note {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, rgba(153, 69, 255, 0.02));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-main);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px var(--glow-purple);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-purple);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-purple);
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--purple-light);
}

.contact-details h4 {
    margin-bottom: 0.5rem;
}

.discord-username {
    color: var(--purple-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--purple-light);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.preferred-contact {
    background: rgba(153, 69, 255, 0.05);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.preferred-contact h4 {
    margin-bottom: 1rem;
}

.copy-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.3);
    color: var(--purple-light);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.copy-discord:hover {
    background: rgba(153, 69, 255, 0.2);
    box-shadow: 0 5px 20px var(--glow-purple);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(153, 69, 255, 0.1);
    color: var(--text-secondary);
}

/* Main Stats Display */
.main-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Fixed Stats when scrolled */
.main-stats.fixed {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(10, 10, 15, 0.98);
    padding: 1.5rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(153, 69, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 60px rgba(153, 69, 255, 0.2);
    animation: slideDown 0.3s ease;
    z-index: 998;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.main-stats.fixed .stat-box {
    padding: 1.5rem;
    margin: 0;
}

.main-stats.fixed .stat-number {
    font-size: 2.5rem;
}

.main-stats.fixed .stat-label {
    font-size: 0.85rem;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Cool Title Effect for PVEE */
.title-main {
    font-size: 7rem;
    font-weight: 900;
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #14f195 75%, #667eea 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 40px rgba(153, 69, 255, 0.6));
    text-shadow: 0 0 80px rgba(153, 69, 255, 0.4);
}

.title-main::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(15px);
    opacity: 0.6;
    transform: scale(1.05);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 40px rgba(153, 69, 255, 0.6)) hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 50px rgba(20, 241, 149, 0.6)) hue-rotate(30deg);
    }
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 40px rgba(153, 69, 255, 0.6)) hue-rotate(0deg);
    }
}

.stat-box {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease, transform 0.2s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--purple-main);
    box-shadow: 0 10px 30px var(--glow-purple);
}

.stat-box:hover::before {
    opacity: 0.3;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--purple-light);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.stat-box:hover i {
    transform: scale(1.2);
}

.stat-box .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--glow-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.stat-box:hover .card-glow {
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Revenue Box Styling */
.stat-box.revenue-box {
    grid-column: 1 / -1;
}

.revenue-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 0 1rem;
}

.revenue-details span {
    display: block;
}

/* Learn More Arrow */
.learn-more-arrow {
    margin-top: 3rem;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
}

.learn-more-arrow span {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.learn-more-arrow i {
    color: var(--purple-light);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Network Geometry Background */
.network-geometry {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--purple-main), transparent);
    height: 1px;
    animation: networkMove 10s linear infinite;
}

@keyframes networkMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .title-main { 
        font-size: 3.5rem; 
        letter-spacing: -1px;
    }
    .nav-menu { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .main-stats { grid-template-columns: 1fr; }
    .main-stats.fixed { 
        width: 95%; 
        gap: 1rem;
        padding: 1rem;
        grid-template-columns: 1fr;
        top: 60px;
    }
    .main-stats.fixed .stat-box {
        padding: 1rem;
    }
    .main-stats.fixed .stat-number {
        font-size: 2rem;
    }
}

/* Music Control Button */
.music-control {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1001;
}

.music-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(153, 69, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(153, 69, 255, 0.3);
    color: var(--purple-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: musicPulse 2s ease-in-out infinite;
    outline: none;
}

.music-btn:hover {
    background: rgba(153, 69, 255, 0.2);
    border-color: var(--purple-main);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.5);
}

.music-btn.muted {
    color: var(--text-secondary);
    animation: none;
    opacity: 0.6;
}

.music-btn.muted i::before {
    content: "\f6a9"; /* fa-volume-mute icon */
}

@keyframes musicPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(153, 69, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(153, 69, 255, 0);
    }
}

/* Audio Visualizer Bars */
.audio-visualizer {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.visualizer-bars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.visualizer-bar {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(153, 69, 255, 0.8),
        rgba(20, 241, 149, 0.8));
    border-radius: 1px;
    transform-origin: center bottom;
    transition: height 0.05s ease-out, opacity 0.05s ease-out;
    box-shadow: 0 0 3px rgba(153, 69, 255, 0.4);
    opacity: 0.6;
    height: 3px;
    min-height: 3px;
}

.visualizer-bar.active {
    animation: barGlow 0.1s ease-out;
}

@keyframes barGlow {
    0% {
        box-shadow: 0 0 5px rgba(153, 69, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(153, 69, 255, 1);
    }
    100% {
        box-shadow: 0 0 5px rgba(153, 69, 255, 0.5);
    }
}
        box-shadow: 0 0 0 0 rgba(153, 69, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(153, 69, 255, 0);
    }
}

/* Audio Visualizer */
.audio-visualizer {
    position: fixed;
    top: 70px; /* Unter der Navbar */
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visualizer-container {
    display: flex;
    gap: 4px;
    height: 40px;
    align-items: flex-end;
}

.bar {
    width: 6px;
    min-height: 4px;
    background: linear-gradient(to top, 
        #00ff88 0%, 
        #00ffff 30%, 
        #9945ff 50%, 
        #ff00ff 70%, 
        #ffff00 100%);
    border-radius: 3px 3px 0 0;
    animation: musicWave 1s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.03s);
    transition: height 0.15s ease;
    box-shadow: 0 0 10px rgba(153, 69, 255, 0.3);
}

@keyframes musicWave {
    0%, 100% {
        height: 8px;
        opacity: 0.7;
    }
    25% {
        height: 25px;
        opacity: 0.9;
    }
    50% {
        height: 35px;
        opacity: 1;
    }
    75% {
        height: 20px;
        opacity: 0.85;
    }
}

/* Verschiedene Animationsmuster */
.bar:nth-child(1) { animation-duration: 1.1s; height: 15px; }
.bar:nth-child(2) { animation-duration: 0.9s; height: 25px; }
.bar:nth-child(3) { animation-duration: 1.3s; height: 20px; }
.bar:nth-child(4) { animation-duration: 0.8s; height: 30px; }
.bar:nth-child(5) { animation-duration: 1.2s; height: 18px; }
.bar:nth-child(6) { animation-duration: 1.0s; height: 28px; }
.bar:nth-child(7) { animation-duration: 1.4s; height: 22px; }
.bar:nth-child(8) { animation-duration: 0.7s; height: 35px; }
.bar:nth-child(9) { animation-duration: 1.1s; height: 25px; }
.bar:nth-child(10) { animation-duration: 0.95s; height: 32px; }
.bar:nth-child(11) { animation-duration: 1.25s; height: 20px; }
.bar:nth-child(12) { animation-duration: 0.85s; height: 28px; }
.bar:nth-child(13) { animation-duration: 1.15s; height: 24px; }
.bar:nth-child(14) { animation-duration: 1.35s; height: 30px; }
.bar:nth-child(15) { animation-duration: 0.75s; height: 35px; }
.bar:nth-child(16) { animation-duration: 1.05s; height: 32px; }
.bar:nth-child(17) { animation-duration: 0.9s; height: 28px; }
.bar:nth-child(18) { animation-duration: 1.2s; height: 25px; }
.bar:nth-child(19) { animation-duration: 1.3s; height: 22px; }
.bar:nth-child(20) { animation-duration: 0.8s; height: 30px; }
.bar:nth-child(21) { animation-duration: 1.1s; height: 26px; }
.bar:nth-child(22) { animation-duration: 0.95s; height: 24px; }
.bar:nth-child(23) { animation-duration: 1.25s; height: 20px; }
.bar:nth-child(24) { animation-duration: 0.85s; height: 18px; }
.bar:nth-child(25) { animation-duration: 1.15s; height: 22px; }
.bar:nth-child(26) { animation-duration: 1.0s; height: 15px; }
.bar:nth-child(27) { animation-duration: 0.7s; height: 12px; }
.bar:nth-child(28) { animation-duration: 1.4s; height: 10px; }
.bar:nth-child(29) { animation-duration: 0.9s; height: 8px; }
.bar:nth-child(30) { animation-duration: 1.2s; height: 6px; }

/* Wenn Musik pausiert ist */
.audio-visualizer.paused .bar {
    animation-play-state: paused;
    height: 4px !important;
    opacity: 0.3;
}

/* Verified Badge */
.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    z-index: 100;
    filter: drop-shadow(0 0 5px rgba(20, 241, 149, 0.8));
    pointer-events: none;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(24, 21, 31, 0.98) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(153, 69, 255, 0.05);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Payment Section */
.payment-section {
    padding: 60px 0;
    background: rgba(10, 10, 15, 0.98);
    border-top: 1px solid rgba(153, 69, 255, 0.2);
}

.payment-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(153, 69, 255, 0.05);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.payment-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.05);
}

.payment-method.preferred {
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.3);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--green-main);
}

.payment-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-box {
        padding: 1.5rem;
    }
    
    .verified-badge {
        width: 20px;
        height: 20px;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--purple-light);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* COMPREHENSIVE MOBILE STYLES */

/* Tablet View */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile View (Phones) */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    /* Entry Screen Mobile */
    .entry-logo {
        font-size: 4rem;
    }
    
    .entry-subtitle {
        font-size: 1rem;
    }
    
    .enter-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .followers-badge {
        padding: 0.8rem 1.5rem;
    }
    
    /* Main Stats Mobile */
    .main-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box.revenue-box {
        grid-column: 1;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .revenue-details {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Games Section Mobile - WICHTIG */
    .games-section {
        padding: 60px 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .game-card {
        max-width: 100%;
    }
    
    .game-thumbnail {
        height: 150px;
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-info h3 {
        font-size: 0.95rem;
    }
    
    .game-stats {
        font-size: 0.8rem;
    }
    
    /* Videos Section Mobile */
    .videos-section {
        padding: 60px 0;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .video-card {
        max-width: 100%;
    }
    
    .video-placeholder {
        height: 150px;
    }
    
    .video-title {
        font-size: 0.9rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Payment Section Mobile */
    .payment-box {
        padding: 1.5rem;
    }
    
    .payment-method {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .payment-method i {
        font-size: 1.2rem;
    }
    
    /* Music Control Mobile */
    .music-control {
        bottom: 20px;
        left: 20px;
    }
    
    .music-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 20px;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    /* Entry Screen Small Mobile */
    .entry-logo {
        font-size: 3rem;
    }
    
    .enter-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero Small Mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .avatar-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .verified-badge {
        width: 18px;
        height: 18px;
    }
    
    /* Stats Small Mobile */
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .revenue-details {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    /* Games Small Mobile */
    .game-thumbnail {
        height: 130px;
    }
    
    .game-info h3 {
        font-size: 0.85rem;
    }
    
    .game-stats {
        font-size: 0.75rem;
    }
    
    .game-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Service Cards Small Mobile */
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    /* Videos Small Mobile */
    .video-placeholder {
        height: 120px;
    }
    
    .video-title {
        font-size: 0.8rem;
    }
    
    /* Contact Form Small Mobile */
    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Section Titles Small Mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Container Small Mobile */
    .container {
        padding: 0 10px;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .entry-logo {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2.3rem;
    }
    
    .game-thumbnail {
        height: 110px;
    }
    
    .game-info {
        padding: 0.8rem;
    }
    
    .game-info h3 {
        font-size: 0.75rem;
    }
    
    .game-stats {
        font-size: 0.7rem;
    }
    
    .game-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .service-card {
        padding: 0.8rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .service-card h3 {
        font-size: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
    }
    
    .video-placeholder {
        height: 100px;
    }
    
    .video-title {
        font-size: 0.75rem;
    }
}

/* Landscape Mode Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}