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

:root {
    --gold-primary: #FFD700;
    --gold-secondary: #FFA500;
    --gold-dark: #B8860B;
    --gold-light: #FFF8DC;
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500, #B8860B);
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #ffffff;
    --text-gold: #FFD700;
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-gold-strong: 0 0 30px rgba(255, 215, 0, 0.5);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}


.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a, #0a0a0a);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #FFD700, transparent),
        radial-gradient(2px 2px at 40px 70px, #FFA500, transparent),
        radial-gradient(1px 1px at 90px 40px, #FFF8DC, transparent),
        radial-gradient(1px 1px at 130px 80px, #FFD700, transparent),
        radial-gradient(2px 2px at 160px 30px, #FFA500, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite;
}

.twinkling {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, #FFD700, transparent),
        radial-gradient(1px 1px at 100px 100px, #FFA500, transparent),
        radial-gradient(1px 1px at 150px 150px, #FFF8DC, transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: twinkle 3s ease-in-out infinite reverse;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: var(--shadow-gold);
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    animation: rotate 4s linear infinite;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--gold-primary);
    text-shadow: var(--shadow-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

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

.nav-link.active::after {
    width: 100%;
}

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

.shop-btn {
    background: var(--gold-gradient);
    padding: 10px 20px !important;
    border-radius: 25px;
    color: var(--dark-bg) !important;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    color: var(--dark-bg) !important;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}


.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-logo {
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.about {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.8);
}

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

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.trailer {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.8);
}

.trailer-content {
    text-align: center;
}

.trailer-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #cccccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.trailer-preview {
    margin-bottom: 40px;
}

.video-placeholder {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-gold-strong);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

.play-button-overlay i {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-left: 5px;
}

.trailer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-trailer {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    font-size: 1.2rem;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-trailer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700, #B8860B);
}

.btn-trailer i {
    font-size: 1.5rem;
}

.trailer-note {
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
}


.staff {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.8);
}

.staff-content {
    text-align: center;
}

.staff-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.staff-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.staff-member:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.member-avatar:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-strong);
}

.minecraft-head {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.staff-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold-primary);
    font-family: 'Orbitron', monospace;
}

.member-role {
    font-size: 1.1rem;
    color: var(--gold-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-description {
    color: #cccccc;
    line-height: 1.6;
}


.footer {
    background: var(--darker-bg);
    padding: 50px 0 20px;
    border-top: 2px solid var(--gold-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #888888;
}

.legal-notice {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-notice p {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}




.regulamin {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.5);
}

.regulamin-content {
    max-width: 900px;
    margin: 0 auto;
}

.regulamin-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    box-shadow: var(--shadow-gold);
}

.regulamin-section {
    margin-bottom: 40px;
}

.regulamin-section:last-child {
    margin-bottom: 0;
}

.regulamin-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    text-shadow: var(--shadow-gold);
}

.regulamin-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.regulamin-list {
    color: #cccccc;
    line-height: 2;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.regulamin-list li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.regulamin-list ol {
    margin-left: 20px;
    margin-top: 10px;
}

.regulamin-list ul {
    margin-left: 20px;
    margin-top: 10px;
}

.regulamin-list strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.regulamin-link {
    color: var(--gold-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.regulamin-link:hover {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
    text-shadow: var(--shadow-gold);
}

.regulamin-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.regulamin-actions .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}


.discord {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.8);
}

.discord-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.discord-info {
    flex: 1;
}

.discord-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.6;
}

.discord-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
}

.feature i {
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 0.9rem;
}

.btn-discord {
    background: #5865F2;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.discord-widget {
    flex: 1;
    display: flex;
    justify-content: center;
}

.discord-widget iframe {
    border-radius: 15px;
    box-shadow: var(--shadow-gold-strong);
    transition: all 0.3s ease;
}

.discord-widget iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.discord-banner {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-gold-strong);
    transition: all 0.4s ease;
    display: block;
    object-fit: contain;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.02);
    padding: 5px;
}

.discord-banner:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    border-color: var(--gold-primary);
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 20px 0;
        border-top: 1px solid var(--gold-primary);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 20px;
        display: block;
    }
    
    .hero {
        padding: 80px 15px 40px;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .hero-logo {
        max-width: 260px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .trailer {
        padding: 60px 0;
    }
    
    .trailer-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .video-thumbnail {
        height: 300px;
    }
    
    .play-button-overlay {
        width: 80px;
        height: 80px;
    }
    
    .play-button-overlay i {
        font-size: 2rem;
    }
    
    .staff {
        padding: 60px 0;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .staff-member {
        padding: 30px 20px;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
    }
    
    .regulamin {
        padding: 60px 0;
    }
    
    .regulamin-text {
        padding: 25px 20px;
    }
    
    .regulamin-subtitle {
        font-size: 1.5rem;
    }
    
    .regulamin-text p,
    .regulamin-list {
        font-size: 1rem;
    }
    
    .discord {
        padding: 60px 0;
    }
    
    .discord-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .discord-features {
        align-items: center;
    }
    
    .discord-widget iframe {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .hero {
        padding: 70px 10px 30px;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .about-card,
    .staff-member {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-card h3,
    .staff-member h3 {
        font-size: 1.3rem;
    }
    
    .video-placeholder {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .play-button-overlay {
        width: 70px;
        height: 70px;
    }
    
    .play-button-overlay i {
        font-size: 1.8rem;
    }
    
    .btn-trailer {
        font-size: 0.95rem;
        padding: 12px 25px;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
    }
    
    .discord-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .discord-features {
        gap: 12px;
    }
    
    .feature {
        gap: 12px;
        font-size: 0.9rem;
    }
    
    .feature i {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .btn-discord {
        font-size: 1rem;
        padding: 12px 25px;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .discord-widget iframe {
        height: 350px;
        border-radius: 10px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .legal-notice {
        margin: 15px 10px 0;
        padding: 12px;
    }
    
    .legal-notice p {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-logo {
        max-width: 160px;
    }
    
    .about-card,
    .staff-member {
        padding: 20px 12px;
        margin: 0 5px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-button-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-button-overlay i {
        font-size: 1.5rem;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
    }
    
    .discord-widget iframe {
        height: 300px;
    }
}


@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .about-card:hover,
    .staff-member:hover {
        transform: none;
    }
    
    .nav-link:hover {
        color: var(--text-light);
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .about-card:active,
    .staff-member:active {
        transform: scale(0.98);
    }
}


@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
        padding: 60px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-logo {
        max-width: 120px;
    }
    
    .about,
    .trailer,
    .staff,
    .discord {
        padding: 40px 0;
    }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-logo,
    .thumbnail-image,
    .minecraft-head {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .stars,
    .twinkling {
        animation: none;
    }
    
    .logo i {
        animation: none;
    }
    
    .logo-container {
        animation: none;
    }
}


body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}


input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


.protection-hidden {
    display: none !important;
}


img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}


img[onclick], img[data-clickable="true"] {
    pointer-events: auto;
}


* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
