:root {
    --primary-black: #000000;
    --secondary-dark: #29303A;
    --gold-accent: #C7AB68;
    --light-cream: #E3DBBA;
    --deep-blue-1: #010B18;
    --deep-blue-2: #010C1A;
    --deep-blue-3: #010D1D;
    --deep-blue-4: #010D1C;
    --deep-blue-5: #010B17;
    --deep-blue-6: #010C1B;
    
    --gradient-primary: linear-gradient(135deg, var(--deep-blue-1), var(--deep-blue-2));
    --gradient-secondary: linear-gradient(135deg, var(--deep-blue-3), var(--deep-blue-4));
    --gradient-gold: linear-gradient(135deg, var(--gold-accent), #D4B876);
    
    --shadow-glow: 0 0 20px rgba(199, 171, 104, 0.3);
    --shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.rtl {
    direction: rtl;
}

body.rtl .nav-menu {
    flex-direction: row-reverse;
}

body.rtl .hero-buttons {
    flex-direction: row-reverse;
}

body.rtl .footer-content {
    flex-direction: row-reverse;
}

body.rtl .hamburger {
    order: -1;
}

body.rtl .nav-logo {
    flex-direction: row-reverse;
}

body.rtl .nav-link {
    text-align: right;
}

body.rtl .nav-menu {
    right: -100%;
    left: auto;
}

body.rtl .nav-menu.active {
    right: 0;
    left: auto;
}

body.rtl .nav-item {
    text-align: right;
}

body.rtl .nav-link {
    justify-content: flex-end;
}

body.rtl .language-switcher {
    left: 20px;
    right: auto;
}

body.rtl .mobile-lang-switcher {
    text-align: right;
}

body.rtl .mobile-lang-switcher .language-switcher {
    justify-content: flex-end;
}

body.rtl .footer-links {
    flex-direction: row-reverse;
}

body.rtl .footer-social {
    flex-direction: row-reverse;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(199, 171, 104, 0.3);
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: var(--light-cream);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.lang-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 ease;
}

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

.lang-btn.active {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
    animation: languagePulse 0.6s ease;
}

.lang-btn:hover:not(.active) {
    background: rgba(199, 171, 104, 0.2);
    color: var(--gold-accent);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(199, 171, 104, 0.3);
}

@keyframes languagePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--light-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gold-accent);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

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

.nav-link {
    color: var(--light-cream);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-accent);
}

.nav-link:hover::before {
    content: '';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--gold-accent);
    transition: all 0.3s ease;
}

.nav-link[href="index.html"]:hover::before {
    content: '\f015';
}

.nav-link[href="about.html"]:hover::before {
    content: '\f05a';
}

.nav-link[href="rules.html"]:hover::before {
    content: '\f0e3';
}

.nav-link[href="team.html"]:hover::before {
    content: '\f0c0';
}

.nav-link[href="store.html"]:hover::before {
    content: '\f07a';
}

.nav-link[href="servers.html"]:hover::before {
    content: '\f233';
}

.nav-link[href="contact.html"]:hover::before {
    content: '\f0e0';
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gold-accent);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(199, 171, 104, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(199, 171, 104, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(199, 171, 104, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 11, 24, 0.8), rgba(1, 12, 26, 0.6));
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: 1.3rem;
    color: var(--light-cream);
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.2s both;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: var(--shadow-glow);
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--light-cream);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.8s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.9s both;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .hero-stats .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow);
    }
}


.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

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

.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;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover::before {
        left: 100%;
    }
}

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

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(199, 171, 104, 0.4);
    }
}

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

@media (hover: hover) and (pointer: fine) {
    .btn-secondary:hover {
        background: var(--gold-accent);
        color: var(--primary-black);
        transform: translateY(-3px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold-accent);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}


.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(199, 171, 104, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}


.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-black);
    animation: rotate 20s linear infinite;
}

.team {
    background: var(--primary-black);
}

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

.team-member {
    text-align: center;
    padding: 40px 20px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transition: left 0.5s;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.member-avatar {
    position: relative;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 140px;
    height: 140px;
    border: 3px solid var(--gold-accent);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold-accent);
}

.member-role {
    opacity: 0.8;
    font-size: 1rem;
}

.rules {
    background: var(--gradient-primary);
}

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

.rule-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.rule-card:hover::before {
    transform: scaleX(1);
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.rule-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.rule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-cream);
}

.rule-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.store {
    background: var(--gradient-secondary);
}

.store-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.product-image {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-cream);
}

.product-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.contact {
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold-accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 171, 104, 0.1);
    border-radius: 50%;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--light-cream);
}

.contact-details p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.contact-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-shadow: var(--shadow-glow);
}

.contact-form {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(199, 171, 104, 0.3);
    border-radius: 10px;
    color: var(--light-cream);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(199, 171, 104, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(227, 219, 186, 0.6);
}

.footer {
    background: var(--deep-blue-1);
    padding: 60px 0 20px;
    border-top: 1px solid var(--gold-accent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.footer-social {
    display: flex;
    gap: 20px;
}

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

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(199, 171, 104, 0.2);
    opacity: 0.8;
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

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

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes mobilePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-main {
        font-size: 4.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .title-main {
        font-size: 4rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
        
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        animation: mobilePulse 2s infinite;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 20px 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.4s ease;
    }
    
    .nav-link {
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(199, 171, 104, 0.2);
        transform: translateX(5px);
    }
    
    .hero {
        padding: 80px 0 30px;
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        animation: slideInFromBottom 0.8s ease;
    }
    
    .title-line {
        font-size: 1.1rem;
        animation: slideInFromBottom 0.8s ease 0.2s both;
    }
    
    .title-main {
        font-size: 3rem;
        margin-bottom: 15px;
        animation: slideInFromBottom 0.8s ease 0.4s both;
    }
    
    .title-sub {
        font-size: 1.2rem;
        animation: slideInFromBottom 0.8s ease 0.6s both;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
        animation: slideInFromBottom 0.8s ease 0.8s both;
    }
    
    .hero-stats {
        gap: 20px;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
        animation: slideInFromBottom 0.8s ease 1s both;
    }
    
    .hero-stats .stat-item {
        min-width: 120px;
        padding: 20px 25px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 20px;
        border: 1px solid rgba(199, 171, 104, 0.3);
        transition: all 0.3s ease;
    }
    
    @media (hover: hover) and (pointer: fine) {
        .hero-stats .stat-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(199, 171, 104, 0.3);
        }
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        animation: slideInFromBottom 0.8s ease 1.2s both;
    }
    
    .btn {
        min-width: 220px;
        padding: 15px 30px;
        font-size: 1rem;
        border-radius: 30px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    @media (hover: hover) and (pointer: fine) {
        .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(199, 171, 104, 0.4);
        }
    }
    
    .btn:active {
        transform: translateY(-1px) scale(1.02);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        animation: slideInFromBottom 0.6s ease;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(199, 171, 104, 0.2);
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-card {
        animation: slideInFromBottom 0.6s ease;
        transition: all 0.3s ease;
    }
    
    .social-card:hover {
        transform: translateY(-5px) scale(1.03);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }    
    
    .value-item:focus {
        outline: 2px solid var(--gold-accent);
        outline-offset: 2px;
    }
    
    .language-tabs {
        gap: 10px;
        margin-bottom: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .tab-btn:hover {
        transform: translateY(-2px) scale(1.05);
    }
    
    .rules-header {
        padding: 40px 20px;
        margin-bottom: 40px;
        animation: slideInFromBottom 0.6s ease;
    }
    
    .rules-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        animation: mobilePulse 2s infinite;
    }
    
    .rules-title {
        font-size: 2.2rem;
    }
    
    .rules-subtitle {
        font-size: 1rem;
    }
    
    .rule-accordion-header {
        padding: 20px;
        gap: 15px;
        transition: all 0.3s ease;
    }
    
    .rule-accordion-header:hover {
        background: rgba(199, 171, 104, 0.1);
        transform: translateX(5px);
    }
    
    .rule-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        animation: mobilePulse 2s infinite;
    }
    
    .rule-info h3 {
        font-size: 1.3rem;
    }
    
    .rule-info p {
        font-size: 0.9rem;
    }
    
    .rule-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .rule-details {
        padding: 0 20px 20px;
    }
    
    .rule-details p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .rule-details li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        width: fit-content;
        animation: slideInFromBottom 0.6s ease;
    }
    
    .language-switcher .lang-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .language-switcher .lang-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(199, 171, 104, 0.3);
    }
    
    .hero {
        padding: 60px 0 20px;
        min-height: 85vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        animation: slideInFromBottom 0.8s ease;
    }
    
    .title-line {
        font-size: 1rem;
        animation: slideInFromBottom 0.8s ease 0.2s both;
    }
    
    .title-main {
        font-size: 2.5rem;
        margin-bottom: 10px;
        animation: slideInFromBottom 0.8s ease 0.4s both;
    }
    
    .title-sub {
        font-size: 1.1rem;
        animation: slideInFromBottom 0.8s ease 0.6s both;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 5px;
        animation: slideInFromBottom 0.8s ease 0.8s both;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: 15px;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
        animation: slideInFromBottom 0.8s ease 1s both;
    }
    
    .hero-stats .stat-item {
        min-width: 100px;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        border: 1px solid rgba(199, 171, 104, 0.3);
        transition: all 0.3s ease;
        animation: scaleIn 0.6s ease;
    }
    
    @media (hover: hover) and (pointer: fine) {
        .hero-stats .stat-item:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(199, 171, 104, 0.3);
        }
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
        animation: mobilePulse 2s infinite;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 10px;
        animation: slideInFromBottom 0.8s ease 1.2s both;
    }
    
    .btn {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 0.95rem;
        border-radius: 25px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    @media (hover: hover) and (pointer: fine) {
        .btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 25px rgba(199, 171, 104, 0.4);
        }
    }
    
    .btn:active {
        transform: translateY(0) scale(1.02);
    }
    
    .section-title {
        font-size: 2rem;
        animation: slideInFromBottom 0.6s ease;
    }
    
    .page-title {
        font-size: 2rem;
        animation: slideInFromBottom 0.6s ease;
    }
    
    .page-subtitle {
        font-size: 1rem;
        animation: slideInFromBottom 0.6s ease 0.2s both;
    }
    
    .form-container {
        padding: 30px 20px;
        animation: slideInFromBottom 0.6s ease;
    }
    
    .owner-card,
    .developer-card {
        padding: 30px 20px;
        animation: slideInFromBottom 0.6s ease;
        transition: all 0.3s ease;
    }
    
    .owner-card:hover,
    .developer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(199, 171, 104, 0.2);
    }
    
    .navbar {
        padding: 15px 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo .logo-gif {
        width: 35px;
        height: 35px;
        animation: mobilePulse 2s infinite;
    }
    
    .hamburger {
        width: 30px;
        height: 30px;
        animation: mobilePulse 2s infinite;
    }
    
    .hamburger .bar {
        height: 3px;
        background: var(--gold-accent);
        transition: all 0.3s ease;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .feature-card {
        padding: 25px 20px;
        animation: slideInFromBottom 0.6s ease;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 30px rgba(199, 171, 104, 0.2);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        animation: mobilePulse 2s infinite;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin: 15px 0 10px;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .social-card {
        padding: 25px 20px;
        animation: slideInFromBottom 0.6s ease;
        transition: all 0.3s ease;
    }
    
    .social-card:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 15px 30px rgba(199, 171, 104, 0.2);
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        animation: mobilePulse 2s infinite;
    }
    
    .social-card h3 {
        font-size: 1.3rem;
        margin: 15px 0 10px;
    }
    
    .social-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        font-size: 1.2rem;
        animation: slideInFromBottom 0.6s ease;
    }
    
    .footer-logo .footer-logo-gif {
        width: 35px;
        height: 35px;
        animation: mobilePulse 2s infinite;
    }
    
    .footer-links {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        padding: 8px 15px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background: rgba(199, 171, 104, 0.2);
        transform: translateY(-2px);
    }
    
    .footer-social {
        gap: 20px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 20px rgba(199, 171, 104, 0.3);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo .logo-gif {
        width: 30px;
        height: 30px;
    }
    
    .hamburger {
        width: 25px;
        height: 25px;
    }
    
    .hamburger .bar {
        height: 2px;
    }
    
    .language-switcher {
        display: none;
    }
    
    .nav-menu .mobile-lang-switcher {
        display: block;
        text-align: center;
        margin: 20px 0;
        padding: 0 20px;
    }
    
    .nav-menu .mobile-lang-switcher .language-switcher {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-menu .mobile-lang-switcher .lang-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
        background: rgba(199, 171, 104, 0.1);
        border: 1px solid rgba(199, 171, 104, 0.3);
        color: var(--light-gold);
        transition: all 0.3s ease;
        min-width: 60px;
    }
    
    .nav-menu .mobile-lang-switcher .lang-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(199, 171, 104, 0.3);
        background: rgba(199, 171, 104, 0.2);
    }
    
    .nav-menu .mobile-lang-switcher .lang-btn.active {
        background: var(--gold-accent);
        color: var(--dark-bg);
        box-shadow: 0 5px 15px rgba(199, 171, 104, 0.4);
    }
    
    .hero {
        padding: 50px 0 20px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .title-line {
        font-size: 0.9rem;
    }
    
    .title-main {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 10px;
        margin-bottom: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats .stat-item {
        min-width: 90px;
        padding: 12px 18px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 12px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .btn {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin: 12px 0 8px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .social-media {
        padding: 60px 0;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .social-card h3 {
        font-size: 1.2rem;
        margin: 12px 0 8px;
    }
    
    .social-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
        
    .section-header {
        padding: 20px 15px 15px;
        border-radius: 20px 20px 0 0;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-content {
        padding: 15px;
    }
    
    .section-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-item {
        padding: 18px 15px;
        border-radius: 15px;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .value-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .accordion-header {
        padding: 15px;
        gap: 10px;
    }
    
    .accordion-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .accordion-content p {
        padding: 0 15px 15px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .rules-content {
        padding: 60px 0;
    }
    
    .language-tabs {
        gap: 6px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .tab-btn i {
        font-size: 0.8rem;
    }
    
    .rules-header {
        padding: 25px 15px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
    
    .rules-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .rules-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .rules-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .rule-accordion-header {
        padding: 15px;
        gap: 10px;
    }
    
    .rule-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .rule-info h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .rule-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .rule-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .rule-details {
        padding: 0 15px 15px;
    }
    
    .rule-details p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .rule-details li {
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 5px 0;
    }
    
    .team-content {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-member {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .member-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .member-role {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .member-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .owner-card,
    .developer-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .owner-avatar,
    .developer-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .owner-name,
    .developer-name {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .owner-role,
    .developer-role {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .owner-description,
    .developer-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .store-content {
        padding: 60px 0;
    }
    
    .store-categories {
        padding: 30px 0;
    }
    
    .category-tabs {
        gap: 8px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .product-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .payment-methods {
        margin-top: 30px;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .payment-methods h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .payment-item {
        padding: 10px;
        border-radius: 10px;
    }
    
    .payment-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .payment-name {
        font-size: 0.8rem;
    }
    
    .servers-content {
        padding: 60px 0;
    }
    
    .server-card {
        padding: 20px 15px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .server-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .server-name {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .server-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .server-status {
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
    }
    
    .server-features {
        margin-top: 20px;
    }
    
    .server-features h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .server-features ul {
        gap: 8px;
    }
    
    .server-features li {
        font-size: 0.85rem;
        padding: 5px 0;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .contact-item {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .form-container {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-logo .footer-logo-gif {
        width: 30px;
        height: 30px;
    }
    
    .footer-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 15px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 40px 0 15px;
        min-height: 75vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .title-line {
        font-size: 0.8rem;
    }
    
    .title-main {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .title-sub {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 3px;
        line-height: 1.4;
    }
    
    .hero-stats {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .hero-stats .stat-item {
        min-width: 80px;
        padding: 10px 15px;
        border-radius: 10px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-buttons {
        gap: 6px;
    }
    
    .btn {
        min-width: 160px;
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 18px;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .page-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card,
    .social-card {
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .feature-icon,
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-card h3,
    .social-card h3 {
        font-size: 1.1rem;
        margin: 10px 0 6px;
    }
    
    .feature-card p,
    .social-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .about-section {
        margin-bottom: 30px;
        max-width: 99%;
        border-radius: 15px;
    }
    
    .section-header {
        padding: 18px 12px 12px;
        border-radius: 15px 15px 0 0;
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-content {
        padding: 12px;
    }
    
    .section-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .value-item {
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .value-item h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .value-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .accordion-header {
        padding: 12px;
        gap: 8px;
    }
    
    .accordion-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .accordion-header h3 {
        font-size: 0.95rem;
    }
    
    .accordion-content p {
        padding: 0 12px 12px;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .language-tabs {
        gap: 4px;
        margin-bottom: 25px;
    }
    
    .tab-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        border-radius: 15px;
    }
    
    .tab-btn i {
        font-size: 0.75rem;
    }
    
    .rules-header {
        padding: 20px 12px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .rules-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .rules-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .rules-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .rule-accordion-header {
        padding: 12px;
        gap: 8px;
    }
    
    .rule-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .rule-info h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .rule-info p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .rule-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .rule-details {
        padding: 0 12px 12px;
    }
    
    .rule-details p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .rule-details li {
        font-size: 0.75rem;
        line-height: 1.3;
        padding: 4px 0;
    }
    
    .team-member {
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    
    .member-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .member-role {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .member-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .owner-card,
    .developer-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .owner-avatar,
    .developer-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .owner-name,
    .developer-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .owner-role,
    .developer-role {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .owner-description,
    .developer-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .product-card {
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .product-name {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .product-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .payment-methods {
        margin-top: 25px;
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .payment-methods h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .payment-item {
        padding: 8px;
        border-radius: 8px;
    }
    
    .payment-icon {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .payment-name {
        font-size: 0.75rem;
    }
    
    .server-card {
        padding: 15px 12px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .server-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .server-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .server-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .server-status {
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
    }
    
    .server-features {
        margin-top: 15px;
    }
    
    .server-features h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .server-features ul {
        gap: 6px;
    }
    
    .server-features li {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    
    .contact-item {
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .form-container {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .submit-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .footer {
        padding: 25px 0 12px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-logo {
        font-size: 1rem;
    }
    
    .footer-logo .footer-logo-gif {
        width: 25px;
        height: 25px;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-links a {
        padding: 5px 10px;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .about-content {
        padding: 40px 0;
        min-height: 100vh;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-section {
        margin-bottom: 30px;
        max-width: 95%;
        width: 100%;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(199, 171, 104, 0.2);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }
    
    .section-header {
        padding: 20px 15px 15px;
        border-radius: 15px 15px 0 0;
        background: rgba(199, 171, 104, 0.1);
        box-sizing: border-box;
    }
    
    .section-header::before {
        height: 2px;
        border-radius: 15px 15px 0 0;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
    }
    
    .section-content {
        padding: 20px 15px;
        background: rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    
    .section-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: left;
    }
    
    .values-grid {
        gap: 15px;
        margin-top: 15px;
    }
    
    .value-item {
        padding: 20px 15px;
        border-radius: 12px;
        background: rgba(199, 171, 104, 0.05);
        border: 1px solid rgba(199, 171, 104, 0.1);
        box-sizing: border-box;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 12px;
        flex-shrink: 0;
    }
    
    .value-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.1;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .accordion-header {
        padding: 15px;
        gap: 12px;
        border-radius: 12px;
        margin-bottom: 12px;
        background: rgba(199, 171, 104, 0.05);
        box-sizing: border-box;
    }
    
    .accordion-header:hover {
        background: rgba(199, 171, 104, 0.1);
        transform: translateX(3px);
    }
    
    .accordion-header.active {
        background: rgba(199, 171, 104, 0.15);
        border-radius: 12px 12px 0 0;
    }
    
    .accordion-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.1;
    }
    
    .accordion-content {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0 0 12px 12px;
        margin-top: -12px;
        padding-top: 15px;
        box-sizing: border-box;
    }
    
    .accordion-content p {
        padding: 0 15px 15px;
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: left;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(199, 171, 104, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.mobile-touch {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--gold-accent);
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #D4B876;
    }
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--gold-accent);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
    .btn:focus,
    .nav-link:focus,
    .tab-btn:focus {
        outline: 2px solid var(--gold-accent);
        outline-offset: 2px;
    }
    
    .accordion-header:focus,
    .rule-accordion-header:focus {
        outline: 2px solid var(--gold-accent);
        outline-offset: -2px;
    }
}

@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn,
    .nav-link,
    .tab-btn,
    .accordion-header,
    .rule-accordion-header {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

.logo-gif, .footer-logo-gif {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.page-header {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    background: var(--gradient-secondary);
    padding: 100px 0;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-cream);
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.social-media {
    background: var(--primary-black);
    padding: 100px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.social-card {
    background: var(--gradient-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    text-decoration: none;
    color: var(--light-cream);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.social-card.discord:hover {
    background: #5865F2;
}

.social-card.instagram:hover {
    background: #E4405F;
}

.social-card.twitch:hover {
    background: #9146FF;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold-accent);
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.social-card p {
    opacity: 0.9;
}

.about-content {
    padding: 100px 0;
    background: var(--gradient-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.about-section {
    margin-bottom: 60px;
    max-width: 90%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199, 171, 104, 0.2);
}

.section-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 40px 30px 30px;
    background: rgba(199, 171, 104, 0.1);
    border-radius: 25px 25px 0 0;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--light-gold));
    border-radius: 25px 25px 0 0;
}

.section-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    background: rgba(199, 171, 104, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--gold-accent);
    font-weight: 600;
}

.section-content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    padding: 30px 25px;
    background: rgba(199, 171, 104, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(199, 171, 104, 0.3);
    background: rgba(199, 171, 104, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    background: rgba(199, 171, 104, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-accent);
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gold);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    gap: 20px;
    background: rgba(199, 171, 104, 0.05);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.accordion-header:hover {
    background: rgba(199, 171, 104, 0.1);
    transform: translateX(8px);
}

.accordion-header.active {
    background: rgba(199, 171, 104, 0.15);
    border-radius: 20px 20px 0 0;
}

.accordion-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    background: rgba(199, 171, 104, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-header h3 {
    font-size: 1.4rem;
    color: var(--gold-accent);
    font-weight: 600;
    flex: 1;
}

.accordion-arrow {
    font-size: 1.2rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 20px 20px;
    margin-top: -20px;
    padding-top: 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 30px 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-gold);
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }
    
    .about-section {
        margin-bottom: 40px;
        max-width: 95%;
        border-radius: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 30px 20px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .section-header::before {
        height: 3px;
        border-radius: 20px 20px 0 0;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-content {
        padding: 25px 20px;
    }
    
    .section-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .value-item {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 15px;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .value-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .accordion-header {
        padding: 20px;
        gap: 15px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .accordion-header h3 {
        font-size: 1.2rem;
    }
    
    .accordion-content {
        border-radius: 0 0 15px 15px;
        margin-top: -15px;
        padding-top: 20px;
    }
    
    .accordion-content p {
        padding: 0 20px 20px;
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .about-content {
        padding: 40px 0;
    }
    
    .about-section {
        margin-bottom: 30px;
        max-width: 95%;
        border-radius: 15px;
    }
    
    .section-header {
        padding: 20px 15px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .section-header::before {
        height: 2px;
        border-radius: 15px 15px 0 0;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-content {
        padding: 20px 15px;
    }
    
    .section-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .values-grid {
        gap: 15px;
        margin-top: 15px;
    }
    
    .value-item {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 12px;
    }
    
    .value-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .accordion-header {
        padding: 15px;
        gap: 12px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .accordion-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .accordion-content {
        border-radius: 0 0 12px 12px;
        margin-top: -12px;
        padding-top: 15px;
    }
    
    .accordion-content p {
        padding: 0 15px 15px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 40px 20px;
    background: rgba(199, 171, 104, 0.1);
    border-bottom: 1px solid rgba(199, 171, 104, 0.2);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    animation: pulse 2s infinite;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--gold-accent);
    margin: 0;
    font-weight: 700;
}

.section-content {
    padding: 30px 40px 40px;
}

.section-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

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

.value-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transition: left 0.5s;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin: 0 auto 20px;
    animation: float 3s ease-in-out infinite;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--light-cream);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.features-accordion {
    margin-top: 30px;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 5px 20px rgba(199, 171, 104, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: rgba(199, 171, 104, 0.1);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-black);
    flex-shrink: 0;
}

.accordion-header h3 {
    font-size: 1.4rem;
    color: var(--light-cream);
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.accordion-arrow {
    color: var(--gold-accent);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content p {
    padding: 0 30px 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

.stats-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: var(--gradient-secondary);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.community-features {
    background: var(--gradient-primary);
    padding: 100px 0;
}

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

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transition: left 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.feature-item .feature-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-cream);
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.owner-section {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.owner-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    position: relative;
    overflow: hidden;
}

.owner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

.owner-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.avatar-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--gold-accent);
    animation: pulse 2s infinite;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 220px;
    height: 220px;
    border: 3px solid var(--gold-accent);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.crown-icon, .code-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    animation: bounce 2s infinite;
}

.owner-name, .developer-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.owner-role, .developer-role {
    font-size: 1.2rem;
    color: var(--light-cream);
    margin-bottom: 20px;
    opacity: 0.9;
}

.owner-description, .developer-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.owner-badges, .staff-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.owner-badge {
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.founder-badge {
    background: rgba(199, 171, 104, 0.2);
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
}

.staff-badge {
    background: rgba(199, 171, 104, 0.2);
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
}

.staff-section {
    background: var(--gradient-secondary);
    padding: 100px 0;
}

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

.staff-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transition: left 0.5s;
}

.staff-card:hover::before {
    left: 100%;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.staff-avatar {
    position: relative;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
}

.staff-avatar .avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-accent);
    animation: pulse 2s infinite;
}

.staff-avatar .avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 130px;
    height: 130px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.staff-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.staff-role {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.developer-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.developer-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    position: relative;
    overflow: hidden;
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

.developer-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.developer-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.skill-tag {
    padding: 6px 12px;
    background: rgba(199, 171, 104, 0.2);
    color: var(--gold-accent);
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(199, 171, 104, 0.3);
}

.team-stats {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.join-team {
    background: var(--gradient-secondary);
    padding: 100px 0;
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 30px;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.rules-content {
    background: var(--gradient-secondary);
    padding: 100px 0;
}

.language-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(199, 171, 104, 0.3);
    color: var(--light-cream);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.tab-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
    animation: categoryPulse 0.6s ease;
}

.tab-btn.active i {
    transform: rotate(360deg);
    animation: iconSpin 0.8s ease;
}

.tab-btn:hover:not(.active) {
    background: rgba(199, 171, 104, 0.2);
    border-color: var(--gold-accent);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(199, 171, 104, 0.3);
}

.tab-btn:hover:not(.active) i {
    transform: scale(1.2);
    color: var(--gold-accent);
}

@keyframes categoryPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1.05); }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rules-section {
    display: none;
}

.rules-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.rules-header {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    position: relative;
    overflow: hidden;
}

.rules-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.rules-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.rules-title {
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.rules-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.rules-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.rule-accordion-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.rule-accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.rule-accordion-item:hover::before {
    transform: scaleX(1);
}

.rule-accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--gold-accent);
}

.rule-accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.rule-accordion-header:hover {
    background: rgba(199, 171, 104, 0.1);
}

.rule-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.rule-info {
    flex: 1;
}

.rule-info h3 {
    font-size: 1.5rem;
    color: var(--light-cream);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.rule-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.rule-icon {
    width: 50px;
    height: 50px;
    background: rgba(199, 171, 104, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.rule-arrow {
    color: var(--gold-accent);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.rule-accordion-item.active .rule-arrow {
    transform: rotate(180deg);
}

.rule-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.rule-accordion-item.active .rule-accordion-content {
    max-height: 500px;
}

.rule-details {
    padding: 0 30px 30px;
}

.rule-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.rule-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-details li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.rule-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.store-categories {
    background: var(--primary-black);
    padding: 40px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.store-section {
    display: none;
    padding: 100px 0;
}

.store-section.active {
    display: block;
}

.currency-info {
    text-align: center;
    margin-top: 20px;
}

.currency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(199, 171, 104, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.product-image {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-cream);
}

.product-desc {
    margin-bottom: 20px;
    opacity: 0.9;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.payment-info {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.payment-method {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.payment-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.payment-method h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-cream);
}

.payment-method p {
    opacity: 0.9;
}

.server-status {
    background: var(--gradient-primary);
    padding: 100px 0;
}

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

.status-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.status-card.online {
    border-color: #4CAF50;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.status-text {
    color: #4CAF50;
    font-weight: 600;
}

.status-info h3 {
    color: var(--light-cream);
    margin-bottom: 5px;
}

.status-info p {
    opacity: 0.8;
}

.minecraft-server, .squad-server {
    background: var(--gradient-secondary);
    padding: 100px 0;
}

.server-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.server-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    border-bottom: 1px solid rgba(199, 171, 104, 0.2);
}

.server-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 171, 104, 0.1);
    border-radius: 20px;
}

.server-info {
    flex: 1;
}

.server-info h2 {
    font-size: 2rem;
    color: var(--light-cream);
    margin-bottom: 10px;
}

.server-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.server-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.server-status-badge.online {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.server-details {
    padding: 40px;
}

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

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.server-features {
    margin-bottom: 40px;
}

.server-features h3 {
    font-size: 1.5rem;
    color: var(--light-cream);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(199, 171, 104, 0.1);
    border-radius: 10px;
}

.features-list i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.server-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.server-rules {
    background: var(--primary-black);
    padding: 100px 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.rule-item {
    background: var(--gradient-secondary);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.rule-item .rule-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.rule-item h3 {
    font-size: 1.3rem;
    color: var(--light-cream);
    margin-bottom: 15px;
}

.rule-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.join-servers {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 30px;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-methods {
    background: var(--gradient-secondary);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.contact-card.discord:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865F2;
}

.contact-card.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
    border-color: #E4405F;
}

.contact-card.twitch:hover {
    background: rgba(145, 70, 255, 0.1);
    border-color: #9146FF;
}

.contact-card.email:hover {
    background: rgba(199, 171, 104, 0.1);
    border-color: var(--gold-accent);
}

.contact-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--light-cream);
    margin-bottom: 15px;
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--light-cream);
    text-shadow: var(--shadow-glow);
}

.contact-form-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-secondary);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(199, 171, 104, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.1rem;
    color: var(--light-cream);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(199, 171, 104, 0.3);
    border-radius: 10px;
    color: var(--light-cream);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 15px rgba(199, 171, 104, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(227, 219, 186, 0.6);
}

.submit-btn {
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.faq-section {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-accent);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(199, 171, 104, 0.1);
}

.faq-question h3 {
    color: var(--light-cream);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: rgba(227, 219, 186, 0.9);
    line-height: 1.6;
    margin: 0;
}

.community-guidelines {
    background: var(--gradient-secondary);
    padding: 100px 0;
}

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

.guideline-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(199, 171, 104, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.guideline-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.guideline-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.guideline-item h3 {
    font-size: 1.3rem;
    color: var(--light-cream);
    margin-bottom: 15px;
}

.guideline-item p {
    opacity: 0.9;
    line-height: 1.6;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@media (max-width: 768px) {
    body.rtl .nav-container {
        flex-direction: row-reverse;
    }
    
    body.rtl .nav-logo {
        flex-direction: row-reverse;
        gap: 10px;
    }
    
    body.rtl .nav-menu {
        right: -100%;
        left: auto;
        flex-direction: column;
        align-items: flex-end;
        padding: 80px 30px 30px;
    }
    
    body.rtl .nav-menu.active {
        right: 0;
        left: auto;
    }
    
    body.rtl .nav-item {
        text-align: right;
        width: 100%;
    }
    
    body.rtl .nav-link {
        justify-content: flex-end;
        text-align: right;
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 10px;
    }
    
    body.rtl .nav-link:hover {
        transform: translateX(-5px);
    }
    
    body.rtl .mobile-lang-switcher {
        text-align: right;
        margin: 20px 0;
        padding: 0 20px;
    }
    
    body.rtl .mobile-lang-switcher .language-switcher {
        justify-content: flex-end;
        gap: 10px;
    }
    
    body.rtl .hero {
        text-align: right;
    }
    
    body.rtl .hero h1 {
        text-align: right;
    }
    
    body.rtl .hero p {
        text-align: right;
    }
    
    body.rtl .hero-buttons {
        justify-content: flex-end;
        flex-direction: row-reverse;
    }
    
    body.rtl .btn {
        text-align: center;
    }
    
    body.rtl .section-title {
        text-align: right;
    }
    
    body.rtl .section-subtitle {
        text-align: right;
    }
    
    body.rtl .page-title {
        text-align: right;
    }
    
    body.rtl .page-subtitle {
        text-align: right;
    }
    
    body.rtl .footer-content {
        flex-direction: column-reverse;
        text-align: right;
    }
    
    body.rtl .footer-links {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    
    body.rtl .footer-social {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    
    body.rtl .footer-bottom {
        text-align: right;
    }
    
    body.rtl .accordion-header {
        flex-direction: row-reverse;
        text-align: right;
    }
    
    body.rtl .accordion-content {
        text-align: right;
    }
    
    body.rtl .accordion-content p {
        text-align: right;
    }
    
    body.rtl .rule-accordion-header {
        flex-direction: row-reverse;
        text-align: right;
    }
    
    body.rtl .rule-accordion-content {
        text-align: right;
    }
    
    body.rtl .rule-accordion-content p {
        text-align: right;
    }
    
    body.rtl .product-card {
        text-align: right;
    }
    
    body.rtl .product-card h3 {
        text-align: right;
    }
    
    body.rtl .product-card p {
        text-align: right;
    }
    
    body.rtl .staff-card {
        text-align: right;
    }
    
    body.rtl .staff-card h3 {
        text-align: right;
    }
    
    body.rtl .staff-card p {
        text-align: right;
    }
    
    body.rtl .developer-card {
        text-align: right;
    }
    
    body.rtl .developer-card h3 {
        text-align: right;
    }
    
    body.rtl .developer-card p {
        text-align: right;
    }
    
    body.rtl .contact-card {
        text-align: right;
    }
    
    body.rtl .contact-card h3 {
        text-align: right;
    }
    
    body.rtl .contact-card p {
        text-align: right;
    }
    
    body.rtl .server-card {
        text-align: right;
    }
    
    body.rtl .server-card h3 {
        text-align: right;
    }
    
    body.rtl .server-card p {
        text-align: right;
    }
    
    body.rtl .stats-grid {
        text-align: right;
    }
    
    body.rtl .stat-card {
        text-align: right;
    }
    
    body.rtl .stat-label {
        text-align: right;
    }
    
    body.rtl .tab-btn {
        text-align: center;
    }
    
    body.rtl .tab-btn i {
        margin-left: 0;
        margin-right: 10px;
    }
    
    body.rtl .value-item {
        text-align: right;
    }
    
    body.rtl .value-item h3 {
        text-align: right;
    }
    
    body.rtl .value-item p {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .owner-card,
    .developer-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .server-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .server-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        width: fit-content;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .owner-card,
    .developer-card {
        padding: 30px 20px;
    }
}

@media (max-width: 360px) {
    body.rtl .nav-menu {
        padding: 70px 20px 20px;
    }
    
    body.rtl .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    body.rtl .mobile-lang-switcher {
        padding: 0 15px;
    }
    
    body.rtl .mobile-lang-switcher .lang-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    body.rtl .hero h1 {
        font-size: 2rem;
        text-align: right;
    }
    
    body.rtl .hero p {
        font-size: 1rem;
        text-align: right;
    }
    
    body.rtl .page-title {
        font-size: 1.8rem;
        text-align: right;
    }
    
    body.rtl .page-subtitle {
        font-size: 1rem;
        text-align: right;
    }
    
    body.rtl .section-title {
        font-size: 1.8rem;
        text-align: right;
    }
    
    body.rtl .section-subtitle {
        font-size: 1rem;
        text-align: right;
    }
    
    body.rtl .accordion-header {
        padding: 15px;
        flex-direction: row-reverse;
        text-align: right;
    }
    
    body.rtl .accordion-content p {
        text-align: right;
        padding: 0 15px 15px;
    }
    
    body.rtl .rule-accordion-header {
        padding: 15px;
        flex-direction: row-reverse;
        text-align: right;
    }
    
    body.rtl .rule-accordion-content p {
        text-align: right;
        padding: 0 15px 15px;
    }
    
    body.rtl .product-card {
        text-align: right;
        padding: 20px 15px;
    }
    
    body.rtl .product-card h3 {
        text-align: right;
        font-size: 1.1rem;
    }
    
    body.rtl .product-card p {
        text-align: right;
    }
    
    body.rtl .staff-card {
        text-align: right;
        padding: 20px 15px;
    }
    
    body.rtl .staff-card h3 {
        text-align: right;
        font-size: 1.1rem;
    }
    
    body.rtl .staff-card p {
        text-align: right;
    }
    
    body.rtl .developer-card {
        text-align: right;
        padding: 20px 15px;
    }
    
    body.rtl .developer-card h3 {
        text-align: right;
        font-size: 1.1rem;
    }
    
    body.rtl .developer-card p {
        text-align: right;
    }
    
    body.rtl .contact-card {
        text-align: right;
        padding: 20px 15px;
    }
    
    body.rtl .contact-card h3 {
        text-align: right;
        font-size: 1.1rem;
    }
    
    body.rtl .contact-card p {
        text-align: right;
    }
    
    body.rtl .server-card {
        text-align: right;
        padding: 20px 15px;
    }
    
    body.rtl .server-card h3 {
        text-align: right;
        font-size: 1.1rem;
    }
    
    body.rtl .server-card p {
        text-align: right;
    }
    
    body.rtl .value-item {
        text-align: right;
        padding: 20px 15px;
    }
    
    body.rtl .value-item h3 {
        text-align: right;
        font-size: 1rem;
    }
    
    body.rtl .value-item p {
        text-align: right;
        font-size: 0.85rem;
    }
    
    body.rtl .footer-content {
        text-align: right;
        flex-direction: column-reverse;
    }
    
    body.rtl .footer-links {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    
    body.rtl .footer-social {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    
    body.rtl .footer-bottom {
        text-align: right;
    }
}

@media (max-width: 768px) {
    body {
        background: var(--gradient-primary);
    }
    
    *:hover,
    *:focus,
    *:active {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .navbar {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 20px 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.4s ease;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .mobile-lang-switcher {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(199, 171, 104, 0.2);
    }
    
    .mobile-lang-switcher .language-switcher {
        justify-content: center;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .hamburger {
        display: flex;
        transition: transform 0.3s ease;
    }
    
    .language-switcher {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .lang-btn {
        background: transparent;
        color: var(--light-cream);
    }
    
    .lang-btn.active {
        background: var(--gradient-gold);
        color: var(--primary-black);
    }
    
    .hero {
        background: var(--gradient-primary);
        padding: 60px 0 20px;
        min-height: 85vh;
    }
    
    .hero-stats .stat-item {
        background: rgba(0, 0, 0, 0.3);
        color: var(--light-cream);
    }
    
    .btn-primary {
        background: var(--gradient-gold);
        color: var(--primary-black);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--light-cream);
        border: 2px solid var(--gold-accent);
    }
    
    .developer-card,
    .staff-card,
    .owner-card,
    .feature-card,
    .social-card,
    .value-item,
    .rule-accordion-item,
    .product-card,
    .server-card,
    .contact-card {
        background: rgba(0, 0, 0, 0.4);
        color: var(--light-cream);
        border: 1px solid rgba(199, 171, 104, 0.3);
    }
    
    .developer-card h3,
    .staff-card h3,
    .owner-card h3,
    .feature-card h3,
    .social-card h3,
    .value-item h3,
    .rule-accordion-item h3,
    .product-card h3,
    .server-card h3,
    .contact-card h3 {
        color: var(--gold-accent);
    }
    
    .developer-card p,
    .staff-card p,
    .owner-card p,
    .feature-card p,
    .social-card p,
    .value-item p,
    .rule-accordion-item p,
    .product-card p,
    .server-card p,
    .contact-card p {
        color: var(--light-cream);
    }
    
    .developer-name {
        color: var(--gold-accent);
    }
    
    .developer-role {
        color: var(--light-cream);
        opacity: 0.9;
    }
    
    .developer-description {
        color: var(--light-cream);
        line-height: 1.6;
    }
    
    .skill-tag {
        background: rgba(199, 171, 104, 0.2);
        color: var(--gold-accent);
        border: 1px solid rgba(199, 171, 104, 0.3);
    }
    
    .developer-section,
    .staff-section,
    .owner-section,
    .features,
    .social-media,
    .about-content,
    .rules-content,
    .store-content,
    .servers-content,
    .contact-content {
        background: var(--gradient-secondary);
    }
    
    .page-header {
        background: var(--gradient-primary);
    }
    
    .page-title {
        color: var(--gold-accent);
    }
    
    .page-subtitle {
        color: var(--light-cream);
    }
}
