@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Fira+Code:wght@400;500&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    cursor: none;
}

#custom-cursor {
    position: fixed;
    width: 35px;
    height: 35px;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid #6366f1;
    border-radius: 50%;
    pointer-events: none; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: transform 0.1s ease-out;
    transform: translate(-50%, -50%);
}

#custom-cursor::after {
    content: '</>';
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: #818cf8;
    font-weight: bold;
}

/* Yükleme Ekranı */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#loader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loader-content {
    position: relative;
    z-index: 10000;
    text-align: center;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(90deg, #4f46e5, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-border {
    position: relative;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.gradient-border:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.animate-float { 
    animation: float 6s ease-in-out infinite; 
}

@keyframes float { 
    0%, 100% { transform: translateY(0px); } 
    50% { transform: translateY(-20px); } 
}

#matrix-canvas {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 1; 
    opacity: 0.35; 
    pointer-events: none;
}

input, select, textarea {
    background: #121212 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

select option { 
    background-color: #050505; 
    color: #ffffff; 
}

.btn-basic { border: 1px solid rgba(255, 255, 255, 0.2); background: transparent; transition: all 0.3s ease; }
.btn-plus { background: linear-gradient(90deg, #4f46e5, #6366f1); box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3); }
.btn-diamond { background: linear-gradient(90deg, #9333ea, #6366f1); box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3); }
.btn-qr { background: linear-gradient(135deg, #ec4899, #9333ea); }

.laptop-wrapper {
    perspective: 1000px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.laptop-screen {
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    border: 12px solid #333;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.laptop-screen img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.5s ease;
}

.laptop-base {
    height: 14px; 
    background: #444; 
    border-radius: 0 0 12px 12px;
    position: relative; 
    width: 110%; 
    left: -5%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}