@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
        

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

:root{
    --bg-dark: #0a0a0a;
    --text-main: rgba(255,255,255,0.92);
    --text-muted: rgba(255,255,255,0.65);
    --primary: #FF9800;
    --card-bg: rgba(255, 255, 255, 0.06);
}
        

        #intro-screen {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
        }

        .logo-part {
            width: 200px;
            height: auto;
        }

        #text-container {
            position: absolute;
            text-align: center;
            opacity: 0;
        }

        .brand-name {
            font-size: 5rem;
            text-transform: uppercase;
            letter-spacing: -2px;
            line-height: 1;
            padding-bottom: 20px;
        }

        .ferka { color: #FF9800; }
        .ferkic { color: #FFFFFF; }
        .navferka { color: #FF9800; }
        .navferkic { color: #FFFFFF; }

        .welcome-text {
            font-family: 'Arial', sans-serif;
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 15px;
            letter-spacing: 8px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(20px);
        }

        #real-site {
    opacity: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: block;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    padding: 20px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
	.hero-euro {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.streamer-info {
    margin-bottom: 40px;
}

.streamer-name {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.streamer-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.stream-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.stream-status.offline {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
}

.profile-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary);
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.profile-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.social-btn.discord { color: #5865F2; }
.social-btn.paypal { color: #003087; }

.top-donatori {
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.donatori-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.donatori-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

.donatori-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.donator-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.donator-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.donator-name {
    font-weight: 600;
    color: var(--text-main);
}

.donator-amount {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-euro {
    padding: 40px 20px;
    text-align: center;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.footer-euro a {
    color: var(--primary);
    text-decoration: none;
}

.footer-euro a:hover {
    text-decoration: underline;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.bonus-info {
    margin-bottom: 20px;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.bonus-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.bonus-perks {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.perk {
    background: rgba(255, 152, 0, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.bonus-link:hover {
    opacity: 0.8;
}

.enjoy-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.enjoy-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.enjoy-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.videos-section {
    padding: 80px 20px;
    background: #0f0f0f;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card-loba {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card-loba:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.connected-section {
    padding: 80px 20px;
    background: var(--bg-dark);
    text-align: center;
}

.connected-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.social-grid-loba {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.social-item h3 {
    color: var(--text-main);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.platform {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    background: var(--primary);
    color: black;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e68900;
    transform: translateY(-2px);
}

.footer-loba {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.footer-disclaimer p:first-child {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-disclaimer p:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.leaderboard-main {
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
	html, body {
        margin: 0;
        padding: 0;
	width: 100%;
	min-height: 100vh;
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
	overflow-x: hidden;
}
	.btn i {
    font-size: 1rem;
    margin-right: 8px;
}
	.btn {
	    display: flex;
	    align-items: center;
    	    text-decoration: none;
            padding: 14px 20px;
            border-radius: 12px;
	    letter-spacing: 0.5px;
	    justify-content: center;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: white;
            text-transform: uppercase;
            min-width: auto;
            text-align: center;
	    gap: 12px;
	    position: relative;
	    overflow: hidden;
	    z-index: 1;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	}
	.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}
	.kick { background: #53fc18; color: black; }
	.tiktok { background: #010101; border: 1px solid #ff0050; }
	.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
	.discord { background: #5865F2; }
	.paypal { background: #003087; }
	
	.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}
	.btn:hover::after {
    left: 100%; 
}

	.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 0;
}

.platform-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
}
.platform-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.18);
}
.logo-download-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary), #e68900);
    border: none;
    color: #000;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.download-btn:hover::before {
    left: 100%;
}
.theme-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

#theme-icon {
    transition: transform 0.3s ease;
}

#theme-icon.fa-sun {
    color: #FFD700;
}

#theme-icon.fa-moon {
    color: #87CEEB;
}

body.light-mode {
    background-color: #f4f4f4;
}

body.light-mode #real-site {
    background: #ffffff;
    color: #000;
}

body.light-mode .hero-eurodrmex {
    background: #f8f9fa;
}

body.light-mode .main-title {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF9800;
}

body.light-mode .profile-picture {
    border-color: #FF9800;
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.2);
}

body.light-mode .download-btn {
    border-color: #FF9800;
    color: #FF9800;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.15);
}

body.light-mode .download-btn:hover {
    background: #FF9800;
    color: #fff;
}

body.light-mode .social-btn {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

body.light-mode .social-btn:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

body.light-mode .payment-btn {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

body.light-mode .payment-btn:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

body.light-mode .ferkic {
    color: #333; 
}

body.light-mode .theme-btn {
    background: #ddd;
    color: #000;
}

body.light-mode .nav-header {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-brand {
    color: #000;
}

body.light-mode .nav-link {
    color: #666;
}

body.light-mode .nav-link:hover {
    color: #000;
}

body.light-mode .nav-link.active {
    color: var(--primary);
}

body.light-mode .theme-toggle-btn {
    color: #666;
}

body.light-mode .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.nav-header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid var(--primary);
}

.nav-brand {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.nav-link.signup-btn {
    background: var(--primary);
    color: black;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.signup-btn:hover {
    background: #e68900;
    color: black;
}

.nav-link.signup-btn::after {
    display: none;
}

.recent-videos {
    width: 100%;
    max-width: 1000px;
}

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

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

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

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

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-stats {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-stats i {
    font-size: 0.8rem;
}

/* Hero Section */
.hero-eurodrmex {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #FF9800;
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
    transition: all 0.4s ease;
    animation: profileFloat 3s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 50px rgba(255, 152, 0, 0.5);
    }
}

.profile-picture:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 152, 0, 0.5);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 3px solid #FF9800;
    color: #FF9800;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.2);
    animation: downloadPulse 2s ease-in-out infinite;
}

.download-btn i {
    font-size: 0.85rem;
    animation: downloadIcon 2s ease-in-out infinite;
}

@keyframes downloadPulse {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 10px 25px rgba(255, 152, 0, 0.2);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
    }
}

@keyframes downloadIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(2px);
    }
}

.download-btn:hover {
    background: #FF9800;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
}

.main-title {
    color: var(--text-main);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.social-btn i {
    font-size: 0.85rem;
}

.social-btn.youtube {
    background: #FF0000;
    color: white;
}

.social-btn.tiktok {
    background: #000000;
    color: white;
    border: 1px solid #ff0050;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-btn.discord {
    background: #5865F2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.payment-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.payment-btn i {
    font-size: 0.85rem;
}

.payment-btn.paypal {
    background: #003087;
    color: white;
}


.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for EuroDrmex */
@media (max-width: 768px) {
    .hero-eurodrmex {
        padding: 60px 15px;
    }
    
    .profile-picture {
        width: 150px;
        height: 150px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .social-links,
    .payment-links {
        gap: 10px;
    }
    
    .social-btn,
    .payment-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .profile-picture {
        width: 120px;
        height: 120px;
    }
    
    .social-links,
    .payment-links {
        gap: 8px;
    }
    
    .social-btn,
    .payment-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: 90px;
    }
}

.videos-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 100%);
}

.videos-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-video {
    margin-bottom: 40px;
}

.featured-video .video-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-video .video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    max-height: 350px;
    overflow: hidden;
}

.featured-video .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-video .video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.featured-video .video-content {
    padding: 25px;
}

.featured-video .video-content h3 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.featured-video .video-stats {
    color: var(--text-muted);
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.videos-grid .video-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.videos-grid .video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    max-height: 200px;
    overflow: hidden;
}

.videos-grid .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.videos-grid .video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.videos-grid .video-content {
    padding: 20px;
}

.videos-grid .video-content h3 {
    color: var(--text-main);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.videos-grid .video-stats {
    color: var(--text-muted);
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 400;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .videos-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .nav-brand {
        display: none;
    }
    
    .videos-section {
        padding: 30px 15px;
    }
    
    .videos-container {
        padding: 0 10px;
    }
    
    .featured-video .video-thumbnail {
        max-height: 250px;
    }
    
    .featured-video .video-content {
        padding: 20px;
    }
    
    .featured-video .video-content h3 {
        font-size: 1.4rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .videos-grid .video-thumbnail {
        max-height: 180px;
    }
    
    .videos-grid .video-content {
        padding: 15px;
    }
    
    .videos-grid .video-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .videos-section {
        padding: 20px 10px;
    }
    
    .featured-video .video-thumbnail {
        max-height: 200px;
    }
    
    .featured-video .video-content {
        padding: 15px;
    }
    
    .featured-video .video-content h3 {
        font-size: 1.2rem;
    }
    
    .videos-grid .video-thumbnail {
        max-height: 160px;
    }
    
    .videos-grid .video-content {
        padding: 12px;
    }
    
    .videos-grid .video-content h3 {
        font-size: 1rem;
    }
}

/* Stream Chat Section */
.stream-chat {
    padding: 40px 20px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 15px;
    margin: 30px 0;
}

.chat-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.stream-banner {
    background: linear-gradient(135deg, var(--primary), #e68900);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #000;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-description {
    font-size: 1rem;
    opacity: 0.9;
}

.chat-frame {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-status i {
    color: #ff0000;
    font-size: 0.8rem;
}

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

.chat-content {
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
}

#kick-chat-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

/* Light mode styles for stream chat */
body.light-mode .stream-chat {
    background: rgba(255, 0, 0, 0.08);
}

body.light-mode .chat-container {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .stream-banner {
    background: linear-gradient(135deg, var(--primary), #e68900);
}

body.light-mode .chat-frame {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .chat-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .chat-content {
    background: rgba(255, 255, 255, 0.1);
}

/* Light mode styles for offline section */
body.light-mode .offline-status {
    background: rgba(255, 0, 0, 0.08);
}

body.light-mode .offline-container {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .offline-title {
    color: #000;
}

body.light-mode .offline-description {
    color: #666;
}

body.light-mode .offline-btn {
    background: var(--primary);
    color: #000;
}

body.light-mode .offline-btn:hover {
    background: #e68900;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}