:root {
    --primary: #43F6B2;
    --secondary: #2C3E50;
    --dark: #0a0a0a;
    --light: #ffffff;
    --spacing: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('minecraft-bg.jpg') center/cover;
    z-index: -1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(67, 246, 178, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.logo {
    flex: 0 0 auto;
}

.logo-img {
    height: 35px;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0 20px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Right Side Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.language-selector select {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(67, 246, 178, 0.3);
    color: var(--light);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.language-selector select:hover {
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    gap: 8px;
}

.theme-switcher button {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(67, 246, 178, 0.3);
    color: var(--light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-switcher button:hover {
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}

.theme-switcher button.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-controls {
        margin-left: auto;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Particles Effect */
.minecraft-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, rgba(67, 246, 178, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(67, 246, 178, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s infinite linear;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Logo Animation */
.hero-logo {
    margin-bottom: 40px;
    position: relative;
}

.floating-logo {
    width: 120px;
    height: 120px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(67, 246, 178, 0.3));
}

.floating-logo::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(67, 246, 178, 0.3) 0%, transparent 70%);
    animation: shadowPulse 6s ease-in-out infinite;
}

/* Title Styles */
.hero-title {
    font-size: 5rem;
    font-family: 'Minecraft', sans-serif;
    margin-bottom: 20px;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(67, 246, 178, 0.5);
    animation: glowPulse 3s infinite;
    transform: translateY(-20px);
    opacity: 0;
    animation: titleAppear 1s forwards 0.5s;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    opacity: 0;
    animation: subtitleAppear 1s forwards 0.8s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    transform: translateY(20px);
    opacity: 0;
    animation: buttonsAppear 1s forwards 1.1s;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.button.primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(67, 246, 178, 0.2);
}

.button.primary:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 246, 178, 0.3);
}

.button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.button.secondary:hover {
    background: rgba(67, 246, 178, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 246, 178, 0.2);
}

.button-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.button:hover .button-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s forwards 1.4s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: arrowBounce 2s infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes shadowPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.2); }
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(67, 246, 178, 0.5); }
    50% { text-shadow: 0 0 30px rgba(67, 246, 178, 0.8); }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(10px, 10px); }
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

@keyframes titleAppear {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes subtitleAppear {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes buttonsAppear {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .floating-logo {
        width: 80px;
        height: 80px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    margin: 0;
    background: transparent;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    margin: 0;
    background: transparent;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Download Section */
.download {
    padding: var(--spacing) 0;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.version {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
} 

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1000;
    background: rgba(255,255,255,0.1);
}

.scroll-progress .progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0;
    transition: width 0.3s;
}

/* Achievement System */
.achievement {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    border: 2px solid var(--primary);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: bottom 0.3s;
    z-index: 1000;
}

.achievement.show {
    bottom: 20px;
}

.achievement i {
    color: var(--primary);
    font-size: 24px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Minecraft Inventory */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 4px;
    background: #C6C6C6;
    padding: 8px;
    border: 2px solid #373737;
    max-width: 500px;
    margin: 0 auto;
}

.inventory-item {
    aspect-ratio: 1;
    background: #8B8B8B;
    border: 2px solid;
    border-color: #373737 #FFF #FFF #373737;
    position: relative;
    cursor: pointer;
}

.inventory-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.inventory-item .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    white-space: nowrap;
}

.inventory-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Changelog */
.changelog {
    padding: 80px 0;
}

.version-list {
    max-width: 800px;
    margin: 0 auto;
}

.version-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(67, 246, 178, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.version-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(67, 246, 178, 0.1);
}

.version-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.version-info h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.version-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.update-list {
    padding: 20px;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.update-item:hover {
    background: rgba(67, 246, 178, 0.05);
    transform: translateX(5px);
}

.update-icon {
    width: 32px;
    height: 32px;
    background: rgba(67, 246, 178, 0.1);
    border: 1px solid rgba(67, 246, 178, 0.2);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.minecraft-icon {
    width: 20px;
    height: 20px;
    image-rendering: pixelated;
    transition: transform 0.3s ease;
}

.update-item:hover .minecraft-icon {
    transform: rotate(10deg);
}

.update-item span {
    color: var(--light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .version-item {
        margin: 0 20px;
    }
    
    .version-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Installation Guide */
.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 20px;
}

.step-number {
    background: var(--primary);
    color: var(--dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contact Form */
.minecraft-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.mc-input {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--primary);
    color: var(--light);
    border-radius: 5px;
    outline: none;
}

.mc-input:focus {
    box-shadow: 0 0 10px var(--primary);
}

textarea.mc-input {
    min-height: 150px;
    resize: vertical;
}

.mc-button {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.mc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 246, 178, 0.4);
}

/* Light Theme */
body[data-theme="light"] {
    --dark: #ffffff;
    --light: #000000;
    background-color: var(--dark);
    color: var(--light);
}

/* Animations */
@keyframes rotate {
    from { transform: rotateX(0) rotateY(0); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
} 

/* Genel Section Stilleri */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(67, 246, 178, 0.3);
}

/* Katalog Bölümü */
.catalog {
    padding: 100px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
}

.catalog-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(67, 246, 178, 0.1);
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(67, 246, 178, 0.2);
}

.catalog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.1);
}

.catalog-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.rarity {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.legendary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.epic {
    background: linear-gradient(45deg, #9400D3, #4B0082);
    color: #fff;
}

.catalog-info {
    padding: 20px;
}

.catalog-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.item-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Bölümler Arası Boşluk ve Düzen */
.hero {
    margin-bottom: 50px;
}

.stats {
    padding: 60px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
}

.features {
    margin: 100px 0;
    padding: 100px 0;
}

.gallery {
    margin: 100px 0;
}

.minecraft-inventory {
    margin: 100px 0;
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.6);
}

.changelog {
    margin: 80px 0;
    padding: 60px 0;
}

.installation-guide {
    padding: 100px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.minecraft-title {
    font-family: 'Minecraft', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(67, 246, 178, 0.3);
    position: relative;
}

.minecraft-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px;
    position: relative;
}

.step-block {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.step-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(67, 246, 178, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.step-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(67, 246, 178, 0.2);
}

.step-block:hover::before {
    transform: translateX(100%);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.step-block:hover .step-icon {
    transform: scale(1.1);
    opacity: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(67, 246, 178, 0.3);
}

.step-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    font-family: 'Minecraft', sans-serif;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.step-progress .progress-bar {
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.8s ease;
}

.step-block:hover .progress-bar {
    width: 100%;
}

@media (max-width: 768px) {
    .minecraft-steps {
        grid-template-columns: 1fr;
    }
    
    .step-block {
        margin: 10px;
    }
    
    .minecraft-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

.discord {
    margin: 80px 0;
}

.contact {
    padding: 100px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Container Düzenlemesi */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
} 

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    margin-top: 100px;
    border-top: 1px solid rgba(67, 246, 178, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: var(--light);
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(67, 246, 178, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--dark);
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* Telif Hakkı */
.copyright {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
}

/* Discord Section'ı kaldır */
.discord {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
} 

/* Minecraft İkonları */
.minecraft-icon {
    width: 24px;
    height: 24px;
    image-rendering: pixelated;
    transition: transform 0.3s ease;
}

.update-icon {
    width: 40px;
    height: 40px;
    background: rgba(67, 246, 178, 0.1);
    border: 2px solid rgba(67, 246, 178, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.update-item:hover .update-icon {
    transform: scale(1.1);
    background: rgba(67, 246, 178, 0.2);
    border-color: var(--primary);
}

.update-item:hover .minecraft-icon {
    transform: rotate(10deg);
}

/* Minecraft Update Icons */
.update-icon {
    width: 32px;
    height: 32px;
    background: rgba(67, 246, 178, 0.1);
    border: 1px solid rgba(67, 246, 178, 0.2);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

/* Sword Icon */
.sword-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 1px;
}

.sword-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 4px;
    background: var(--primary);
    border-radius: 1px;
}

/* Anvil Icon */
.anvil-icon::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 6px;
    background: var(--primary);
    border-radius: 1px;
}

.anvil-icon::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
}

/* Redstone Icon */
.redstone-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 2px;
}

.redstone-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.2), 
                0 -9px 0 var(--primary),
                0 9px 0 var(--primary),
                9px 0 0 var(--primary),
                -9px 0 0 var(--primary);
}

.update-item:hover .update-icon {
    transform: scale(1.1);
    background: rgba(67, 246, 178, 0.2);
    border-color: var(--primary);
}

.update-item:hover .sword-icon::before,
.update-item:hover .sword-icon::after,
.update-item:hover .anvil-icon::before,
.update-item:hover .anvil-icon::after,
.update-item:hover .redstone-icon::before,
.update-item:hover .redstone-icon::after {
    box-shadow: 0 0 10px var(--primary);
}