/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Futuristic Design */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated background particles */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite;
    pointer-events: none;
}

/* Bottom glow effect */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 15%, 
        rgba(255, 215, 0, 0.8) 30%, 
        rgba(255, 215, 0, 1) 50%, 
        rgba(255, 215, 0, 0.8) 70%, 
        rgba(255, 215, 0, 0.3) 85%, 
        transparent 100%);
    filter: blur(1px);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: scaleX(0.95);
    }
    100% {
        opacity: 1;
        transform: scaleX(1.05);
    }
}

.navbar:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.97) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-logo:hover {
    /* No hover effects for logo */
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.nav-link::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;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFED4E);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 80%;
}

/* Social Links in Navigation - Futuristic Design */
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 50%, rgba(255, 215, 0, 0.04) 100%);
    border: 2px solid rgba(255, 215, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    line-height: 1;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.8s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.15) 50%, rgba(255, 215, 0, 0.08) 100%);
    border-color: #FFD700;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 1.2rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
    color: #FFED4E;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFD700;
    transition: color 0.3s ease;
}

.social-link:hover span {
    color: #FFED4E;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    background: #FFED4E;
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
    border-radius: 40px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.app-preview {
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    border-radius: 25px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-preview:hover::before {
    opacity: 1;
}

.app-preview:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
}

/* Video specific styles */
.app-preview video {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    display: block;
    position: relative;
    z-index: 2;
    background: #000000;
    opacity: 1;
    filter: brightness(1.05) contrast(1.02);
}

.app-preview video:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
}

/* Fallback pentru browser-e care nu suportă mix-blend-mode */
@supports not (mix-blend-mode: screen) {
    .app-preview video {
        background: transparent;
        filter: brightness(1.1) contrast(1.1);
    }
}

/* Pentru a face video-ul complet transparent în fundal */
.app-preview video {
    background: transparent !important;
    object-fit: cover;
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
}

/* Elimină fundalul negru din video */
.app-preview video::-webkit-media-controls {
    background: transparent;
}

.app-preview video::-webkit-media-controls-panel {
    background: transparent;
}

/* Încearcă să elimini fundalul negru cu CSS */
.app-preview video {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%) !important;
}

/* Alternativ, poți încerca să faci video-ul să se integreze cu fundalul */
.app-preview {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(26, 26, 26, 0.8) 50%, transparent 100%);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #000000;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FFD700;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFD700;
}

.feature-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Detailed Features */
.detailed-features {
    padding: 80px 0;
    background: #000000;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.detail-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border: 1px solid #333;
}

.detail-card.reverse .detail-content {
    flex-direction: row-reverse;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
}

.detail-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.detail-text ul {
    list-style: none;
    padding: 0;
}

.detail-text li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.detail-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    text-align: center;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.info-item i {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #FFD700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.social-links a:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #cccccc;
}

/* FAQ Section Styles */
.faq-section {
    background: #18140c;
    padding: 60px 0 40px 0;
}
.faq-section .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(40, 32, 10, 0.95);
    border: 1.5px solid #bfa32c;
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
    transition: box-shadow 0.2s;
}
.faq-item:hover {
    box-shadow: 0 4px 24px 0 rgba(191,163,44,0.18);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffe066;
    font-size: 1.18rem;
    font-weight: 700;
    text-align: left;
    padding: 20px 28px 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.04em;
    position: relative;
}
.faq-question:after {
    content: '\25BC';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    font-size: 1rem;
    color: #ffe066;
}
.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #221c0e;
    color: #fff;
    font-size: 1rem;
    padding: 0 28px;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.active .faq-answer {
    padding: 16px 28px 24px 28px;
    max-height: 400px;
}
.faq-buttons {
    margin-top: 18px;
    display: flex;
    gap: 16px;
}
.btn-website, .btn-discord, .btn-donate {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-website {
    background: #ffe066;
    color: #18140c;
}
.btn-website:hover {
    background: #fff3b0;
}
.btn-discord {
    background: #5865f2;
    color: #fff;
}
.btn-discord:hover {
    background: #4048b7;
}
.btn-donate {
    background: #ffd700;
    color: #18140c;
}
.btn-donate:hover {
    background: #ffe066;
}
.faq-donate {
    background: rgba(40, 32, 10, 0.98);
    border: 2px solid #ffd700;
    text-align: left;
    padding: 28px 28px 24px 28px;
    margin-top: 32px;
}
.faq-donate-title {
    color: #ffd700;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.faq-donate-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
}

/* Contact Page Styles */
.contact-section {
    background: #18140c;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px 0;
}
.contact-form-wrapper {
    background: rgba(40, 32, 10, 0.98);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
    max-width: 400px;
    margin: 0 auto;
    padding: 36px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group label {
    color: #ffe066;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid #bfa32c;
    background: #221c0e;
    color: #fff;
    font-size: 1rem;
    margin-top: 2px;
    margin-bottom: 2px;
    resize: none;
    transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border: 1.5px solid #ffd700;
    outline: none;
}
.contact-form .btn-donate {
    width: 100%;
    margin-top: 8px;
    font-size: 1.08rem;
    padding: 12px 0;
}
.contact-buttons {
    display: flex;
    gap: 16px;
    margin-top: 22px;
    width: 100%;
    justify-content: center;
}
.contact-buttons .btn {
    flex: 1 1 0;
    font-size: 1.05rem;
    padding: 12px 0;
}
@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 18px 8px 16px 8px;
        max-width: 98vw;
    }
    .contact-section {
        padding: 30px 0 20px 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .social-link {
        padding: 6px 12px;
    }
    
    .social-link span {
        display: none;
    }
    
    .social-link i {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .detail-card.reverse .detail-content {
        flex-direction: column;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .detail-content {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.detail-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src] {
    opacity: 1;
}

/* Hover effects for interactive elements */
.nav-link,
.btn,
.download-btn,
.social-links a {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.nav-link:focus,
.btn:focus,
.download-btn:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Contact Quicklinks (Discord & Forum) */
.contact-form-wrapper {
    position: relative;
}
.contact-quicklinks {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 10px;
    z-index: 2;
}
.btn-compact {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
.btn-compact.btn-discord {
    background: #5865f2;
    color: #fff;
}
.btn-compact.btn-discord:hover {
    background: #4048b7;
}
.btn-compact.btn-website {
    background: #ffe066;
    color: #18140c;
}
.btn-compact.btn-website:hover {
    background: #fff3b0;
}
@media (max-width: 600px) {
    .contact-quicklinks {
        position: static;
        justify-content: flex-end;
        margin-bottom: 10px;
        top: unset;
        right: unset;
    }
}
