/* Niva Policies CSS - Cyber Theme */

/* CSS Variables - Ana sayfa ile uyumlu */
:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #6c757d;
    --success-color: #00ff88;
    --info-color: #00d4ff;
    --warning-color: #ffaa00;
    --danger-color: #ff0066;
    --light-color: #f8f9fa;
    --dark-color: #0a0a0a;
    --cyber-dark: #0d1117;
    --cyber-blue: #00d4ff;
    --cyber-purple: #8b5cf6;
    --cyber-green: #00ff88;
    --cyber-pink: #ff0066;
    --white: #ffffff;
    --black: #000000;
    
    --font-family: 'Poppins', 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 0.75rem;
    --box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    --box-shadow-lg: 0 20px 60px rgba(0, 212, 255, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Navigation - Ana sayfa ile uyumlu */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
    padding: 1rem 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px var(--cyber-blue);
}

.nav-logo:hover {
    transform: scale(1.05);
    color: var(--cyber-blue) !important;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-blue);
    transition: width 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyber-blue) !important;
    text-shadow: 0 0 10px var(--cyber-blue);
    transform: translateY(-2px);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
    padding: 5px;
    margin: -5px;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: 999;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: -20px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    min-width: 280px;
    width: max-content;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 9999;
    padding: 1rem 0;
    margin-top: 5px;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-category {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.dropdown-category:last-child {
    margin-bottom: 0;
}

.dropdown-category h6 {
    color: var(--cyber-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyber-blue) !important;
    text-shadow: 0 0 5px var(--cyber-blue);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

/* Mobile Menu - Düzeltilmiş renkler */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.mobile-dropdown-category {
    padding: 1rem 25px;
}

.mobile-dropdown-category h6 {
    color: var(--cyber-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0 0.75rem 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.mobile-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-left-color: var(--cyber-blue);
    transform: translateX(5px);
}

.mobile-dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    position: relative;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--cyber-blue);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--cyber-blue);
}

/* Mobile Menu - Düzeltilmiş arka plan */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(13, 17, 23, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(0, 212, 255, 0.3);
    transition: left 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-nav-link {
    padding: 18px 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
    border-left: 3px solid var(--cyber-blue);
    color: var(--cyber-blue);
}

.mobile-nav-link i {
    margin-right: 15px;
    width: 20px;
    font-size: 1.1rem;
    text-align: center;
}

/* Mobile Nav Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .mobile-dropdown {
        display: block;
    }
}

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

/* Body Override - Ana sayfa ile uyumlu */
.main-content {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 100px;
}

/* Cyber Background */
.main-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

a {
    color: var(--cyber-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--cyber-green);
    text-decoration: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--cyber-blue);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.page-title::first-letter {
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Emoji fix for page title */
.page-title span:first-child {
    display: inline-block !important;
    position: relative !important;
    z-index: 10 !important;
    font-size: 1.2em;
    margin-right: 8px;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: initial !important;
    text-shadow: none !important;
}

/* General emoji fix for all headings */
h1 span:first-child,
h2 span:first-child,
h3 span:first-child,
h4 span:first-child,
h5 span:first-child,
h6 span:first-child {
    display: inline-block !important;
    position: relative !important;
    z-index: 10 !important;
    font-size: 1.2em;
    margin-right: 8px;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: initial !important;
    text-shadow: none !important;
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 212, 255, 0.05);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.breadcrumb a {
    color: var(--cyber-blue);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--cyber-green);
    text-shadow: 0 0 10px var(--cyber-green);
}

.breadcrumb span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

/* Policy Company Info */
.policy-company-info {
    background: rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border-left: 4px solid var(--cyber-blue);
    box-shadow: var(--box-shadow);
    position: relative;
}

.policy-company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02), rgba(139, 92, 246, 0.02));
    border-radius: var(--border-radius);
    pointer-events: none;
}

.policy-company-info h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cyber-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-company-info h2::first-letter {
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Policy company info emoji fix */
.policy-company-info h2 span:first-child {
    display: inline-block !important;
    position: relative !important;
    z-index: 10 !important;
    font-size: 1.2em;
    margin-right: 8px;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: var(--cyber-blue) !important;
}

.company-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.company-details strong {
    color: var(--white);
    font-weight: 600;
}

.policy-company-info a {
    color: var(--cyber-green);
}

.policy-company-info a:hover {
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

/* Content Wrapper */
.content {
    margin-bottom: 30px;
}

/* Policy Content */
.policy-content {
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

/* Section */
.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--cyber-blue);
    border-bottom: 2px solid var(--cyber-blue);
    padding-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    position: relative;
    z-index: 1;
}

.section h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: transparent;
}

/* Emoji positioning fix */
.section h2,
.rule-card h3,
.info-box h3,
.warning-card h3,
.highlight-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section h2::first-letter,
.rule-card h3::first-letter,
.info-box h3::first-letter,
.warning-card h3::first-letter,
.highlight-card h3::first-letter {
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Emoji visibility fix - Enhanced */
.section h2 span:first-child,
.rule-card h3 span:first-child,
.info-box h3 span:first-child,
.warning-card h3 span:first-child,
.highlight-card h3 span:first-child,
.policy-company-info h2 span:first-child {
    display: inline-block !important;
    position: relative !important;
    z-index: 10 !important;
    font-size: 1.2em;
    margin-right: 8px;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: var(--cyber-blue) !important;
}

/* Special fix for warning card emojis */
.warning-card h3 span:first-child {
    color: #ff4444 !important;
}

/* Special fix for highlight card emojis */
.highlight-card h3 span:first-child {
    color: var(--cyber-green) !important;
}

/* Table Styles - Düzeltilmiş koyu tema */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.table th {
    color: var(--white);
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(13, 17, 23, 0.8);
}

.table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(13, 17, 23, 0.6);
}

.table tbody tr {
    background: rgba(13, 17, 23, 0.6);
    transition: var(--transition);
}

.table tbody tr:nth-child(even) {
    background: rgba(0, 212, 255, 0.05);
}

.table tbody tr:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.table tr:last-child td {
    border-bottom: none;
}

.table td:last-child {
    font-weight: 600;
    color: var(--cyber-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

/* Rules and Cards */
.rules-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rule-card {
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--cyber-blue);
    position: relative;
    transition: var(--transition);
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02), rgba(139, 92, 246, 0.02));
    border-radius: var(--border-radius);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.rule-card:hover::before {
    opacity: 1;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border-color: var(--cyber-blue);
}

.rule-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cyber-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.rule-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--cyber-blue);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 10px;
}

.rule-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 20px;
    color: var(--cyber-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

/* Warning cards - Gri-kırmızı renk kombinasyonu */
.warning-card {
    border-left-color: #ff4444;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), rgba(255, 68, 68, 0.05));
    border-color: rgba(255, 68, 68, 0.3);
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    border-right: 1px solid rgba(128, 128, 128, 0.2);
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.warning-card h2,
.warning-card h3 {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

.warning-card p {
    color: rgba(255, 255, 255, 0.9);
}

.warning-card strong {
    color: #ff6666;
    font-weight: 600;
}

/* Highlight cards */
.highlight-card {
    border-left-color: var(--cyber-green);
    background: rgba(0, 255, 136, 0.03);
    border-color: rgba(0, 255, 136, 0.2);
}

.highlight-card h2,
.highlight-card h3 {
    color: var(--cyber-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
}

/* Lists */
.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.rules-list li:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.rules-list .emoji {
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rules-list p {
    margin: 0;
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
}

.rules-list strong {
    color: var(--white);
    font-weight: 600;
}

/* Info boxes */
.info-box {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.info-box h3 {
    color: var(--cyber-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.info-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.info-box strong {
    color: var(--cyber-blue);
    font-weight: 600;
}

.info-box.warning-card {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), rgba(255, 68, 68, 0.05));
    border-color: rgba(255, 68, 68, 0.3);
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    border-right: 1px solid rgba(128, 128, 128, 0.2);
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.info-box.warning-card h3 {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

.info-box.warning-card p {
    color: rgba(255, 255, 255, 0.9);
}

.info-box.warning-card strong {
    color: #ff6666;
    font-weight: 600;
}

/* Quick Links */
.quick-links {
    margin: 30px 0;
    padding: 25px;
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--cyber-green);
    box-shadow: var(--box-shadow);
}

.quick-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--cyber-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.quick-link:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--cyber-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    text-decoration: none;
}

.link-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--cyber-blue);
}

.link-text {
    font-weight: 500;
}

/* Emergency Contact - Gri-kırmızı renk kombinasyonu */
.emergency-contact {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), rgba(255, 68, 68, 0.05));
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(128, 128, 128, 0.3);
}

.emergency-contact h3 {
    color: #ff4444;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

.emergency-contact p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.emergency-contact a {
    color: var(--danger-color);
    font-weight: 600;
}

.emergency-contact a:hover {
    color: var(--cyber-pink);
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

/* Version Info */
.version-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(20px);
    border-top: 3px solid var(--cyber-purple);
}

.version-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.version-content strong {
    color: var(--cyber-purple);
}

.version-info a {
    color: var(--cyber-purple);
}

.version-info a:hover {
    color: var(--cyber-blue);
}

/* Download Section */
.download-section {
    margin: 30px 0;
    text-align: center;
}

.download-button {
    background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.download-button::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: 0.5s;
}

.download-button:hover::before {
    left: 100%;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    color: var(--white);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .table {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 10px 15px;
    }
    
    .rule-card {
        padding: 20px;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .table th,
    .table td {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .rule-card {
        padding: 15px;
    }
    
    .policy-content {
        padding: 15px;
    }
    
    .policy-company-info {
        padding: 20px;
    }
    
    .quick-links {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .download-section,
    .quick-links,
    .emergency-contact {
        display: none;
    }
    
    .table {
        border: 1px solid #333;
        background: white !important;
        color: black !important;
    }
    
    .table th {
        background: #f0f0f0 !important;
        color: #000 !important;
        border-bottom: 2px solid #333;
    }
    
    .table td {
        background: white !important;
        color: black !important;
        border-bottom: 1px solid #ccc;
    }
    
    .table tbody tr:nth-child(even) {
        background: #f9f9f9 !important;
    }
    
    .page-header,
    .policy-company-info,
    .policy-content {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .warning-card {
        background: #fff5f5 !important;
        border: 1px solid #ffcccc !important;
        color: #cc0000 !important;
    }
    
    .warning-card h2,
    .warning-card h3 {
        color: #cc0000 !important;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

.glow-element {
    animation: glow 2s ease-in-out infinite;
}

/* Bonus Table Styles */
.bonus-table-container {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: var(--border-radius);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--box-shadow);
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
}

.bonus-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.bonus-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--cyber-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.bonus-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.bonus-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.bonus-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.1);
}

.bonus-table td:first-child {
    font-weight: 600;
    color: var(--cyber-green) !important;
}

.bonus-table td:nth-child(2) {
    font-weight: 600;
    color: var(--cyber-blue) !important;
}

.bonus-table td:last-child {
    font-weight: 600;
    color: var(--cyber-purple) !important;
}

/* Bonus Table Responsive */
@media (max-width: 768px) {
    .bonus-table-container {
        margin: 1rem 0;
    }
    
    .bonus-table {
        font-size: 0.85rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .bonus-table th {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bonus-table {
        font-size: 0.75rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .bonus-table th {
        font-size: 0.7rem;
    }
}

/* Print styles for bonus tables */
@media print {
    .bonus-table-container {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .bonus-table {
        color: black;
    }
    
    .bonus-table th {
        color: #333;
        background: #f5f5f5;
    }
    
    .bonus-table td {
        border-bottom: 1px solid #ddd;
    }
    
    .bonus-table td:first-child {
        color: #00aa44 !important;
    }
    
    .bonus-table td:nth-child(2) {
        color: #0066cc !important;
    }
    
    .bonus-table td:last-child {
        color: #6633cc !important;
    }
    
    .bonus-table tbody tr:nth-child(even) {
        background: #f9f9f9;
    }
} 