/* ================================
   TEMEL RESET VE DEĞİŞKENLER
   ================================ */
:root {
    --primary-color: #00f5ff;
    --secondary-color: #ff0080;
    --accent-color: #ffff00;
    --bg-dark: #0a0a0f;
    --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glow-blue: 0 0 20px #00f5ff, 0 0 40px #00f5ff, 0 0 80px #00f5ff;
    --glow-pink: 0 0 20px #ff0080, 0 0 40px #ff0080, 0 0 80px #ff0080;
    --glow-yellow: 0 0 20px #ffff00, 0 0 40px #ffff00, 0 0 80px #ffff00;
}

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

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

/* ================================
   ANA CONTAINER VE ARKAPLAN
   ================================ */
.main-container {
    min-height: 100vh;
    position: relative;
    background: var(--bg-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Grid overlay efekti */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Kayan kodlar container */
.floating-codes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Partiküller container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ================================
   MOUSE TAKİP EDİCİ EFEKTLER
   ================================ */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: var(--glow-blue);
}

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

/* ================================
   İÇERİK WRAPPER
   ================================ */
.content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
}

/* ================================
   LOGO BÖLÜMÜ
   ================================ */
.logo-container {
    margin-bottom: 3rem;
    animation: slideInFromTop 1s ease-out;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-main {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-blue);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-sub {
    font-family: 'Orbitron', monospace;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    opacity: 0.8;
}

@keyframes logoGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

/* ================================
   ANA BAŞLIK
   ================================ */
.main-title {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.title-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
}

.word {
    display: inline-block;
    margin: 0 0.2em;
    position: relative;
    animation: wordFloat 3s ease-in-out infinite;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.word:nth-child(1) { animation-delay: 0s; }
.word:nth-child(2) { animation-delay: 0.5s; }
.word:nth-child(3) { animation-delay: 1s; }
.word:nth-child(4) { animation-delay: 1.5s; }

.word:hover {
    transform: scale(1.1) rotateX(10deg);
    filter: brightness(1.5);
}

.word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.word:hover::before {
    opacity: 1;
    transform: translateY(0);
}

@keyframes wordFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(5deg); }
}

/* ================================
   ALT BAŞLIK
   ================================ */
.subtitle {
    margin-bottom: 3rem;
    animation: slideInFromBottom 1s ease-out 0.5s both;
}

.subtitle-text {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
    font-weight: 500;
    text-shadow: var(--glow-blue);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ================================
   KOD BLOKLARI (YAZILIM KODLARI)
   ================================ */
.code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
    animation: slideInFromBottom 1.2s ease-out 0.8s both;
}

.code-block {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 600px;
    max-width: 900px;
    max-height: 600px;
    overflow: hidden;
    animation: codeBlockFloat 6s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

/* Main code block için özel stiller */
#mainCodeBlock {
    min-width: 700px;
    max-width: 95vw;
    max-height: 70vh;
}

#mainCodeContent {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 245, 255, 0.3) transparent;
}

#mainCodeContent::-webkit-scrollbar {
    width: 6px;
}

#mainCodeContent::-webkit-scrollbar-track {
    background: transparent;
}

#mainCodeContent::-webkit-scrollbar-thumb {
    background: rgba(0, 245, 255, 0.3);
    border-radius: 3px;
}

#mainCodeContent::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 245, 255, 0.5);
}

.code-block:nth-child(1) { animation-delay: 0s; }
.code-block:nth-child(2) { animation-delay: 1s; }
.code-block:nth-child(3) { animation-delay: 2s; }

@keyframes codeBlockFloat {
    0% { 
        transform: translateY(0) rotate(-0.5deg);
        box-shadow: 0 8px 32px rgba(0, 245, 255, 0.1);
    }
    100% { 
        transform: translateY(-10px) rotate(0.5deg);
        box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
    }
}

.code-header {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.code-lang {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: var(--glow-blue);
    letter-spacing: 0.05em;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot.red { 
    background: #ff5f56; 
    animation-delay: 0s;
}
.dot.yellow { 
    background: #ffbd2e; 
    animation-delay: 0.3s;
}
.dot.green { 
    background: #27ca3f; 
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.code-content {
    padding: 1.5rem;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

/* Multi-line code support */
.code-content.multi-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    line-height: 1.8;
}

.code-line {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 1.8rem;
    font-size: 0.95rem;
}

.code-line .line-number {
    color: rgba(148, 163, 184, 0.6);
    font-weight: 300;
    min-width: 35px;
    text-align: right;
    margin-right: 1rem;
    user-select: none;
}

.line-number {
    color: rgba(148, 163, 184, 0.6);
    font-weight: 300;
    min-width: 20px;
    text-align: right;
    user-select: none;
}

/* Clean Code Text */
.code-text-content {
    color: #f8f8f2;
    font-weight: 400;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    white-space: pre;
    line-height: 1.4;
}

/* Hover Effects */
.code-block:hover {
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.code-block:hover .code-lang {
    text-shadow: var(--glow-blue), 0 0 15px #00f5ff;
}

.code-block:hover .dot {
    animation-duration: 0.8s;
}

/* Cursor Blink Animation */
@keyframes cursorBlink {
    0%, 50% { border-color: var(--primary-color); }
    51%, 100% { border-color: transparent; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .code-block {
        min-width: 350px;
        max-width: 90vw;
    }
    
    .code-content {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .code-container {
        gap: 1.5rem;
        margin: 3rem 0;
    }
}

@media (max-width: 480px) {
    .code-block {
        min-width: 300px;
    }
    
    .code-content {
        font-size: 0.9rem;
        padding: 1rem;
        flex-wrap: wrap;
        white-space: normal;
    }
    
    .code-header {
        padding: 0.6rem 1rem;
    }
    
    .code-lang {
        font-size: 0.8rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ================================
   ŞİRKET TANITIMI VE SAYAÇ
   ================================ */
.company-intro-countdown {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: slideInFromLeft 1s ease-out 1s both;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Şirket Bilgileri Bölümü */
.company-info-section {
    text-align: center;
    background: rgba(0, 245, 255, 0.05);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.company-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.company-icon {
    font-size: 4rem;
    animation: companyFloat 3s ease-in-out infinite alternate;
    margin-bottom: 1.5rem;
}

@keyframes companyFloat {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-15px) rotate(2deg); }
}

.company-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: var(--glow-blue);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.company-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

/* Hizmet Kartları */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); filter: brightness(1.2); }
}

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    opacity: 0.9;
}

/* Sayaç Display */
.countdown-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 0, 128, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.countdown-item::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;
}

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

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow-pink);
    border-color: var(--accent-color);
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: var(--glow-pink);
    animation: numberPulse 1.5s ease-in-out infinite;
}

.countdown-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); filter: brightness(1.2); }
}

/* Matrix Kod Yağmuru Sayaç */
.matrix-countdown {
    position: relative;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

.matrix-rain-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#matrixCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.matrix-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.matrix-time {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--glow-blue);
    margin-bottom: 0.5rem;
    animation: matrixGlow 2s ease-in-out infinite alternate;
}

.matrix-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
}

@keyframes matrixGlow {
    0% { text-shadow: var(--glow-blue); }
    100% { text-shadow: var(--glow-blue), 0 0 30px #00f5ff; }
}

/* ================================
   E-POSTA FORMU
   ================================ */
.email-form {
    margin-bottom: 3rem;
    animation: slideInFromRight 1s ease-out 1.5s both;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.email-input:focus {
    border-color: var(--primary-color);
    box-shadow: var(--glow-blue);
    transform: scale(1.02);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--glow-pink);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    max-width: 400px;
    margin: 0 auto;
}

/* ================================
   SOSYAL MEDYA LİNKLERİ
   ================================ */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInFromBottom 1s ease-out 2s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 50%;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--glow-blue);
}

.social-link[data-platform="twitter"]:hover {
    border-color: #1da1f2;
    color: #1da1f2;
    box-shadow: 0 0 20px #1da1f2;
}

.social-link[data-platform="linkedin"]:hover {
    border-color: #0077b5;
    color: #0077b5;
    box-shadow: 0 0 20px #0077b5;
}

.social-link[data-platform="instagram"]:hover {
    border-color: #e4405f;
    color: #e4405f;
    box-shadow: 0 0 20px #e4405f;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    text-align: center;
    z-index: 10;
    animation: slideInFromBottom 1s ease-out 2.5s both;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* ================================
   GENEL ANİMASYONLAR
   ================================ */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* ================================
   KAYAN KOD ELEMENTLER
   ================================ */
.code-element {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
    pointer-events: none;
    white-space: nowrap;
    animation: floatCode 15s linear infinite;
}

@keyframes floatCode {
    0% {
        transform: translateY(100vh) translateX(-50px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* ================================
   PARTİKEL ELEMENTLER
   ================================ */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 10s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* ================================
   RESPONSİVE TASARIM
   ================================ */
@media (max-width: 768px) {
    .company-intro-countdown {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .company-info-section {
        padding: 2rem 1.5rem;
    }
    
    .company-title {
        margin-bottom: 1.5rem;
    }
    
    .company-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-desc {
        font-size: 0.85rem;
    }
    
    .countdown-display {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .matrix-countdown {
        height: 150px;
    }
    
    .matrix-time {
        font-size: 1.5rem;
    }
    
    .form-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-input {
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .content-wrapper {
        width: 95%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .company-intro-countdown {
        gap: 1.5rem;
    }
    
    .company-info-section {
        padding: 1.5rem 1rem;
    }
    
    .company-icon {
        font-size: 3rem;
    }
    
    .company-title {
        margin-bottom: 1rem;
    }
    
    .company-subtitle {
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 0.95rem;
    }
    
    .service-desc {
        font-size: 0.8rem;
    }
    
    .countdown-display {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.3rem;
    }
    
    .countdown-number {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .word {
        display: block;
        margin: 0.2em 0;
    }
    
    .matrix-countdown {
        height: 120px;
    }
    
    .matrix-time {
        font-size: 1.2rem;
    }
    
    .matrix-subtitle {
        font-size: 0.7rem;
    }
}

/* ================================
   HOVER EFEKTLER - GENEL
   ================================ */
.content-wrapper > * {
    transition: all 0.3s ease;
}

.content-wrapper > *:hover {
    transform: translateZ(10px);
}

/* Özel scroll bar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
