* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #FF8C00 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    margin-bottom: 40px;
}

.logo-image {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 4rem;
    color: #8B4513;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.slogan {
    font-size: 1.3rem;
    color: #8B4513;
    font-weight: 500;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.construction-animation {
    margin: 40px 0;
}

.gear-container {
    position: relative;
    height: 80px;
    margin-bottom: 30px;
}

.gear-1, .gear-2, .gear-3 {
    position: absolute;
    font-size: 2rem;
    color: #8B4513;
}

.gear-1 {
    left: 50%;
    transform: translateX(-50%);
    animation: rotate 4s linear infinite;
}

.gear-2 {
    left: 35%;
    top: 20px;
    animation: rotate 4s linear infinite reverse;
}

.gear-3 {
    right: 35%;
    top: 20px;
    animation: rotate 4s linear infinite;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    border-radius: 10px;
    animation: progress 3s ease-in-out infinite;
}

.progress-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    color: #8B4513;
    font-size: 1.2rem;
}

.contact-item span {
    color: #333;
    font-weight: 500;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
}

.feature i {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.newsletter {
    margin-top: 40px;
    padding: 30px;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.newsletter h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.newsletter p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8B4513;
}

.newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes float-particle {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% { 
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .main-text h2 {
        font-size: 1.8rem;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-info {
        gap: 10px;
    }
    
    .contact-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-image {
        width: 80px;
    }
    
    .main-text h2 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .gear-container {
        height: 60px;
    }
    
    .gear-1, .gear-2, .gear-3 {
        font-size: 1.5rem;
    }
} 