/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0b0e1a;
	--dark-bg: #fff;
    --darker-bg: #070a12;
    --card-bg: #10254b;
    --accent-purple: #6439ce;
	--yesil-buton: #00d500;
    --accent-blue: #33b69b;
    --text-color: #dbd3cc;
    --highlight-color: #6439ce;
    --gradient-bg: linear-gradient(135deg, rgba(16, 37, 75, 0.9) 0%, rgba(25, 25, 70, 0.9) 100%);
}

@font-face {
    font-family: 'LanetKel';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
}

body {
    font-family: 'Montserrat', sans-serif;
	background-color: #0a0d19;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--highlight-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--accent-purple);
    margin: 0 auto 30px;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
    top: -2px;
    left: 45px;
}

/* Player Prev Styles */
.player-prev {
    display: flex;
    flex-direction: column;

}

.player-prev .item {
    width: 100%;
}

.player-prev .item figure {
    width: 100%;
}

.player-prev .item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Header Styles */
.header {
    background-color: rgba(11, 14, 26, 0.9);
    border-bottom: 1px solid rgba(100, 57, 206, 0.3);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background-color: var(--yesil-buton);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn i {
    font-size: 16px;
}

.nav-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 57, 206, 0.4);
}

.form-btn {
    background-color: var(--accent-purple);
}

.telegram-btn {
    background-color: #0088cc;
}

.youtube-btn {
    background-color: #FF0000;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-btn {
    background: linear-gradient(45deg, #25F4EE 0%, #000000 50%, #FE2C55 100%);
}

.skype-btn {
    background-color: #00AFF0;
}

/* Hero Section */
.hero {
    padding: 50px 0;
    margin-top: 20px;
}

.hero-content {
    display: flex;
    background: var(--gradient-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 400px;
    z-index: 2;
}

.hero-title {
    margin-top: 20px;
    text-align: center;
    z-index: 2;
}

.hero-title h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 10px var(--accent-blue), 0 0 20px var(--accent-blue);
    letter-spacing: 2px;
}

.hero-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sponsor-logos img {
    height: 40px;
    transition: transform 0.3s ease;
}

.sponsor-logos img:hover {
    transform: scale(1.1);
}

.stream-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stream-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.youtube-stream {
    background-color: #FF0000;
}

.twitch-stream {
    background-color: #9146FF;
}

.kick-stream {
    background-color: #53FC18;
    color: black;
    font-size: 18px;
    font-weight: bold;
}

.stream-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Banner */
.banner {
    margin: 30px 0;
}

.banner-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* VIP Sites Section */
.vip-sites, .trusted-sites {
    padding: 50px 0;
}

.sites-grid, .sites-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sites-grid-alt {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.site-card {
    background: var(--gradient-bg);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.site-logo {
    text-align: center;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    max-height: 100px;
}

.site-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--accent-blue);
    margin-right: 8px;
}

.entry-btn {
    background-color: var(--yesil-buton);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.entry-btn:hover {
    background-color: #04ad04;
    box-shadow: 0 0 15px rgba(100, 57, 206, 0.5);
}

/* Contact Section */
.contact {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.contact-card {
    background: var(--gradient-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-icon i {
    background: var(--accent-purple);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-btn {
    background-color: var(--accent-purple);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #7a4dda;
    box-shadow: 0 0 15px rgba(100, 57, 206, 0.5);
}

/* Footer */
.footer {
    background-color: rgba(11, 14, 26, 0.95);
    padding: 20px 0;
    border-top: 1px solid rgba(100, 57, 206, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-btn {
    background-color: var(--accent-purple);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
    }
    
    .hero-info {
        padding: 20px;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .site-card {
        padding: 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .sponsor-logos {
        gap: 10px;
    }
    
    .sponsor-logos img {
        height: 30px;
    }
    
    .stream-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animated Gradient Background for Cards */
.site-card, .contact-card {
    position: relative;
    overflow: hidden;
}

.site-card::before, .contact-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 57, 206, 0.1) 0%, transparent 60%);
    animation: pulseGradient 15s linear infinite;
    z-index: 0;
}

.site-logo, .site-features, .entry-btn, .contact-icon, .contact-card h3, .contact-card p, .contact-btn {
    position: relative;
    z-index: 1;
}

@keyframes pulseGradient {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

/* Glowing Button Effects */
.entry-btn, .contact-btn {
    position: relative;
    overflow: hidden;
}

.entry-btn::after, .contact-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: shineEffect 3s infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes shineEffect {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}
