:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --glow-color: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
    --divider-color: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Üst Başlık Stilleri */
.top-header {
    background-color: var(--secondary-color);
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.header-link:hover {
    color: #4CAF50;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Karrr efekti */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.snow {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: snowFall linear infinite;
}

@keyframes snowFall {
    0% {
        transform: translateY(-10px) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(20px);
        opacity: 0;
    }
}

.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.banner-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px var(--glow-color);
}

.banner-content .banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.banner-content p {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}

.main-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 100px;
}

.main-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.packages-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.package-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    width: 350px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--glow-color);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #fff, #aaa, #fff);
    background-size: 200%;
    border-radius: 12px;
    opacity: 0;
    transition: 0.5s;
}

.package-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-color);
}

.package-card:hover::before {
    opacity: 0.1;
    animation: animate 3s linear infinite;
}

@keyframes animate {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-divider {
    height: 1px;
    background-color: var(--divider-color);
    margin: 20px 0;
    position: relative;
}

.package-divider::after {
    content: '';
    position: absolute;
    left: 25%;
    right: 25%;
    height: 2px;
    background: var(--accent-color);
    filter: blur(1px);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-align: center;
}

.package-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.package-features {
    list-style: none;
}

.package-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.package-features i {
    margin-right: 10px;
    color: var(--accent-color);
}

.price {
    text-align: center;
    font-size: 1.8rem;
    margin: 20px 0;
    color: var(--accent-color);
    font-weight: bold;
}

.buy-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.buy-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.before-after-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.before-after-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-group {
    margin-bottom: 50px;
}

.weapon-group-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.comparison-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.comparison-box {
    flex: 1;
    max-width: 500px;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--glow-color);
    text-align: center;
}

.comparison-box h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.comparison-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.comparison-box img:hover {
    transform: scale(1.03);
}

.video-section {
    margin: 80px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px var(--glow-color);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3 i {
    transition: transform 0.3s ease;
}

.faq-item.active h3 i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 10px;
    border-top: 1px solid var(--divider-color);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-section, .payment-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.contact-section h2, .payment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-content, .payment-content {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--glow-color);
    margin-top: 20px;
}

.contact-content p, .payment-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-content a, .payment-content a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-content a:hover, .payment-content a:hover {
    text-decoration: underline;
}

/* Installation Page Styles */
.installation-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    color: var(--text-color);
}

.installation-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.installation-container .video-container {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.installation-steps {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 0 15px var(--glow-color);
}

.installation-steps h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.installation-steps ol {
    margin-left: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.important-notes {
    background-color: rgba(255, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff3333;
}

.important-notes h3 {
    color: #ff3333;
    margin-bottom: 15px;
}

.important-notes ul {
    margin-left: 20px;
    line-height: 1.8;
}

/* Terms Page Styles */
.terms-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    color: var(--text-color);
}

.terms-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.terms-content {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--glow-color);
}

.terms-content h2 {
    color: var(--accent-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer {
    background: var(--secondary-color);
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
}

.footer p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.social-links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.social-link.discord {
    background: #000000;
}

.social-link.instagram {
    background: linear-gradient(45deg, #000000, rgb(0, 0, 0), #000000, #000000, #000000, #000000);
}

.social-link.youtube {
    background: #000000;
}

@media (max-width: 768px) {
    .banner {
        height: 50vh;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .banner-content .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .packages-container {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: row;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .header-links {
        justify-content: center;
    }
}