/*
Theme Name: Urus Bahis Premium
Author: Custom Dev
Version: 1.0
Description: Urus Bahis Güncel Giriş - Electric Blue Theme
*/

:root {
    --primary-blue: #00F0FF; /* Elektrik Mavisi */
    --primary-blue-dark: #00BFFF; /* Koyu Elektrik Mavisi */
    --neon-blue: #2646EA; /* Neon Mavi */
    --cyan-glow: #7DF9FF; /* Parlak Cyan */
    --bg-dark: #0a0e17;
    --bg-card: #0d1425;
    --text-light: #ffffff;
    --text-gray: #a0afc5;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- 3D Yıldız Arka Plan Canvas --- */
#star-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top, #0f1829 0%, #050810 100%);
}

/* --- Container & Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- Header --- */
header {
    backdrop-filter: blur(15px);
    background: rgba(10, 14, 23, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-glow));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/* --- Hero Section --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan-glow) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease forwards;
    text-shadow: 0 0 60px rgba(0, 240, 255, 0.3);
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1.2s ease forwards;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.4s ease forwards;
}

/* --- Buttons (Elektrik Mavisi Gradient) --- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--neon-blue) 100%);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.6);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px -10px rgba(0, 240, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

/* --- Badge --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(38, 70, 234, 0.15) 100%);
    border: 1px solid rgba(0, 240, 255, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeUp 0.8s ease forwards;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.badge::before {
    content: '🔒';
    font-size: 18px;
    filter: drop-shadow(0 0 8px var(--primary-blue));
}

/* --- Stats Bar --- */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    animation: fadeUp 1.6s ease forwards;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px var(--primary-blue));
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
    font-weight: 500;
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.card {
    background: linear-gradient(135deg, rgba(13, 20, 37, 0.8) 0%, rgba(10, 14, 23, 0.9) 100%);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 45px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

.card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px -15px rgba(0, 240, 255, 0.4);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 15px var(--primary-blue));
}

.card h3 {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 700;
}

.card p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 15px;
}

.card-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--neon-blue) 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* --- Special Offer (Elektrik Mavisi Glow) --- */
.special-offer {
    margin: 100px 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(38, 70, 234, 0.08) 100%);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 35px;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 60%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

.offer-tag {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--neon-blue) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    letter-spacing: 1px;
}

.special-offer h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.special-offer p {
    margin-bottom: 35px;
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* --- FAQ Accordion --- */
.faq-section {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    margin-bottom: 15px;
    background: rgba(13, 20, 37, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(13, 20, 37, 0.6);
    border-color: rgba(0, 240, 255, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: none;
    color: var(--text-light);
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-blue);
}

.accordion-header::after {
    content: '+';
    font-size: 2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    color: var(--text-gray);
}

.accordion-content.active {
    padding-bottom: 25px;
}

/* --- Footer --- */
footer {
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding: 90px 0 40px;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0) 0%, rgba(5, 7, 10, 1) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(38, 70, 234, 0.1) 100%);
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--neon-blue) 100%);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* --- Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.05rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .cta-group { flex-direction: column; }
    nav ul { gap: 20px; font-size: 13px; }
    .stats-bar { gap: 30px; }
    .section-title { font-size: 2.2rem; }
}
