/* PALAMUT3D - CUSTOM STYLES */

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gradient-text {
    background: linear-gradient(135deg, #f5a623 0%, #e94d3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-nav {
    background: rgba(26, 31, 61, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-mobile {
    background: rgba(26, 31, 61, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.glass-badge:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateY(-2px);
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5a623, #e94d3c);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Sosyal Medya Büyük İkonlar - MOBİL UYUMLU */
.social-big-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .social-big-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
}

.social-big-icon:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: #f5a623;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.social-big-icon i {
    font-size: 20px;
    color: #f5a623;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .social-big-icon i {
        font-size: 28px;
    }
}

.social-big-icon:hover i {
    transform: scale(1.1);
}

/* İkon Daireleri */
.icon-circle {
    width: 3rem;
    height: 3rem;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: #f5a623;
    font-size: 1.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f5a623 0%, #e94d3c 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(245, 166, 35, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: #f5a623;
    transform: translateY(-3px);
}

.hover-3d {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-3d:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 0 20px 40px rgba(245, 166, 35, 0.2);
}

@media (max-width: 768px) {
    .hover-3d:hover {
        transform: translateY(-4px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(245, 166, 35, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1f3d;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f5a623, #e94d3c);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e94d3c, #f5a623);
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #f5a623;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

::selection {
    background: rgba(245, 166, 35, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(245, 166, 35, 0.3);
    color: white;
}

:focus-visible {
    outline: 2px solid #f5a623;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}