:root {
    --primary-color: #ff7b00;
    --primary-dark: #ff6200;
    --primary-light: #ff9f43;
    --primary-glow: rgba(255, 123, 0, 0.35);
    --neon-glow: 0 0 10px #ff7b00, 0 0 20px #ff7b00, 0 0 30px #ff6200;
    --secondary-color: #2c7cb0;
    --background-dark: #111111;
    --background-darker: #1d1d1d;
    --background-darkest: #0a0a0a;
    --card-background: #1d1d1d;
    --text-color: #ffffff;
    --text-muted: #888888;
    --text-secondary: #cccccc;
    --border-color: #2d2d2d;
    --success-color: #00b373;
    --warning-color: #ffbb33;
    --danger-color: #ff4444;
    --info-color: #33b5e5;
}

.navbar {
    background: var(--background-darker) !important;
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(29, 29, 29, 0.95);
    position: fixed;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--text-color) !important;
    font-weight: 700;
    font-size: 24px;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    background-color: var(--background-darkest);
    border-color: var(--border-color);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.hero-section {
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--primary-dark) 100%);
    color: var(--text-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/prime-bg.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    position: relative;
    z-index: 2;
}

.hero-section .btn {
    position: relative;
    z-index: 3;
}

.hero-section h1,
.hero-section p {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/prime-bg.png') center/cover;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stats-section {
    padding: 60px 0;
    background: var(--background-darker);
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.network-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Yeni stiller */
.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
    padding: 20px;
}

.feature-item {
    background: linear-gradient(145deg, var(--background-darker), var(--background-darkest));
    padding: 35px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 123, 0, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(255, 123, 0, 0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 65%,
        rgba(255, 123, 0, 0.1) 75%,
        transparent 85%
    );
    top: -50%;
    left: -50%;
    transform: rotate(0deg);
    transition: all 0.8s ease;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px var(--primary-glow),
        inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    transform: rotate(180deg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
}

.feature-item h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    position: relative;
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
        margin: 0 auto;
    }

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Tech Stack Section */
.tech-stack {
    padding: 100px 0;
    background: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../images/prime-bg.png') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vendor-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 42, 120, 0.03) 0%, rgba(0, 255, 157, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vendor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px var(--primary-glow);
}

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

.vendor-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.vendor-card h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.vendor-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.model-list {
    margin-top: 15px;
    padding: 0;
    list-style: none;
}

.model-list li {
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.model-list li:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .vendor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vendor-grid {
        grid-template-columns: 1fr;
    }
}

.stats-section {
    padding: 100px 0;
    background: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 42, 120, 0.03) 0%, rgba(0, 255, 157, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px var(--primary-glow);
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff7b00 0%, #ff5500 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    display: none;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-card:hover::before {
    transform: translateX(100%);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.testimonial-card p::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: 2px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-avatar {
    border-color: rgba(255, 255, 255, 0.4);
}

.client-info div {
    flex: 1;
}

.client-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.client-info small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

.pricing-section {
    padding: 80px 0;
    background: var(--background-darker);
}

.price-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
    color: var(--text-color);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
    border-color: var(--primary-color);
    position: relative;
    background: linear-gradient(to bottom right, var(--card-background), var(--primary-glow));
}

.price-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: var(--background-dark);
}

.price-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
    line-height: 1;
}

.price small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.price-card .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.price-card .btn-outline-primary {
    color: var(--text-color);
    border-color: var(--text-color);
}

.price-card .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.price-card .btn-hero {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
}

.price-card .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.logo-grid {
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 30px;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 70%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: var(--background-darker);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background: var(--card-background);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-glow);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
.footer {
    background: var(--background-darker);
    color: var(--text-color);
    padding: 80px 0 30px;
        position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--background-darker), var(--primary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--primary-color);
}

.footer-links h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon i {
    color: var(--text-color);
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Ana Tema Stilleri */
body {
    background: var(--background-dark);
    color: var(--text-color);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-width: 100vw;
}

/* Container Stilleri */
.container {
    max-width: 100%;
    padding: 0 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }
}

/* Content Wrapper Stilleri */
.content-wrapper {
    background: var(--background-dark);
    min-height: calc(100vh - 80px);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Bölüm Stilleri */
.py-5 {
    background: var(--background-dark) !important;
}

/* Buton Stilleri */
.btn-hero {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
        box-shadow: var(--neon-glow);
    }

.btn-outline-light {
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Documentation Styles */
.doc-sidebar {
    position: sticky;
    top: 20px;
    background: var(--card-background);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.doc-nav h5 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.doc-nav .nav-link {
    color: var(--text-muted);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.doc-nav .nav-link:hover,
.doc-nav .nav-link.active {
    color: var(--primary-color);
    background: transparent;
}

.doc-content {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.doc-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.doc-content h3 {
    color: var(--text-color);
    margin: 30px 0 15px;
}

.code-block {
    background: var(--background-darkest);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
}

.code-block code {
    color: var(--text-color);
    font-family: 'Fira Code', monospace;
}

/* Article Card Styles */
.article-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.article-content h4 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.article-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-light);
    text-decoration: none;
}

/* Video Card Styles */
.video-card {
    background: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    background: var(--background-darkest);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 20px;
}

.video-content h4 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.video-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Security Card Styles */
.security-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.security-card h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.security-card h3 i {
    color: var(--primary-color);
}

.security-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-card li {
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.security-card li:last-child {
    border-bottom: none;
}

/* Best Practice Card Styles */
.best-practice-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.best-practice-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.practice-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
}

.best-practice-card h4 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.best-practice-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Contact Info Card Styles */
.contact-info-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Security Contact Info Styles */
.security-contact-info {
    background: var(--card-background);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}

.security-contact-info p {
    color: var(--text-muted);
    margin: 10px 0;
}

.security-contact-info i {
    color: var(--primary-color);
}

/* Accordion Styles */
.accordion-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-background);
    color: var(--text-color);
    padding: 20px;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--background-darker);
    color: var(--primary-color);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background: var(--background-darker);
    color: var(--text-muted);
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

/* Search Box Styles */
.search-box .form-control {
    background: var(--background-darker);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
}

.search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    padding-left: 30px;
    padding-right: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .doc-sidebar {
        margin-bottom: 30px;
        position: static;
    }
}

@media (max-width: 768px) {
    .security-card,
    .best-practice-card,
    .contact-info-card {
        margin-bottom: 20px;
    }
}

/* Login & Register Page Styles */
.login-container,
.register-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    min-height: 100vh;
}

.login-container::before,
.register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/prime-bg.png') center/cover fixed;
    opacity: 0.1;
    z-index: 0;
}

.login-card,
.register-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.login-card {
    max-width: 400px;
}

.register-card {
    max-width: 500px;
}

.login-header,
.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1,
.register-header h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.login-header p,
.register-header p {
    color: var(--text-muted);
}

.form-floating {
    margin-bottom: 1rem;
}

.form-floating input {
    background-color: var(--background-darkest);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.form-floating input:focus {
    background-color: var(--background-darkest);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--primary-glow);
    color: var(--text-color);
}

.form-floating label {
    color: var(--text-muted);
}

.form-floating input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--background-darkest) inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
}

.btn-login,
.btn-register {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-login:hover,
.btn-register:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.login-footer,
.register-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer a,
.register-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.login-footer a:hover,
.register-footer a:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-muted);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider span {
    padding: 0 10px;
}

.social-login,
.social-register {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.btn-social {
    background: var(--background-darkest);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: var(--card-background);
    transform: translateY(-2px);
    color: var(--text-color);
}

.form-check {
    margin: 1rem 0;
}

.form-check-label {
    color: var(--text-muted);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: transparent;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary-color) 20%,
        var(--primary-color) 80%,
        transparent
    );
    transform: translateY(-50%);
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 auto;
    max-width: 1400px;
}

.timeline::-webkit-scrollbar {
    display: none;
}

.timeline-item {
    position: relative;
    min-width: 280px;
    max-width: 280px;
    padding: 15px 0;
    flex-shrink: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: 3px solid var(--background-dark);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 123, 0, 0.1);
}

.timeline-content {
    background: var(--background-darkest);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content .vendor-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--background-darker);
    padding: 15px;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    line-height: 1;
}

.timeline-content h4 {
    color: var(--text-color);
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .timeline {
        gap: 20px;
    }
    
    .timeline-item {
        min-width: 260px;
        max-width: 260px;
    }
}

/* Timeline Animation */
.timeline-item {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Year Filter Styles */
.year-filter {
    max-width: 200px;
    margin: 0 auto 2rem;
}

.year-filter .form-select {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
}

.year-filter .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--primary-glow);
}

/* Pagination Styles */
.pagination {
    margin-top: 2rem;
}

.page-link {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.disabled .page-link {
    background-color: var(--background-darker);
    border-color: var(--border-color);
    color: var(--text-muted);
}

/* Load More Button Styles */
#loadMoreBtn {
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

#loadMoreBtn i {
    transition: transform 0.3s ease;
}

#loadMoreBtn:hover i {
    transform: translateY(2px);
}

/* Timeline Animation */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

/* Update Details Page Styles */
.update-header {
    padding: 2rem 0;
}

.update-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.version-badge {
    background: var(--card-background);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--border-color);
}

.update-meta .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 50px;
}

.update-overview {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.update-overview h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.update-overview p {
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-section,
.improvements-section,
.bugfixes-section,
.documentation-section {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.feature-section h3,
.improvements-section h3,
.bugfixes-section h3,
.documentation-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.feature-item,
.improvement-item,
.bugfix-item {
    background: var(--background-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover,
.improvement-item:hover,
.bugfix-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.feature-item h4,
.improvement-item h4,
.bugfix-item h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-item p,
.improvement-item p,
.bugfix-item p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.feature-item ul,
.improvement-item ul,
.bugfix-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item li,
.improvement-item li,
.bugfix-item li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-item li::before,
.improvement-item li::before,
.bugfix-item li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.technical-details {
    background: var(--background-darkest);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.technical-details strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.documentation-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.update-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.update-navigation .btn {
    width: 100%;
    padding: 1rem;
}

/* Make timeline items clickable */
.timeline-content {
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
}

@media (max-width: 768px) {
    .documentation-links {
        flex-direction: column;
    }
    
    .documentation-links .btn {
        width: 100%;
    }
    
    .update-navigation .btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

.card {
    background: var(--card-background) !important;
    border: 1px solid var(--border-color);
}

.card-body {
    color: var(--text-muted);
}

.update-overview.card {
    background: var(--card-background) !important;
    border: 1px solid var(--border-color);
}

.update-overview .card-body {
    color: var(--text-muted);
}

.update-overview h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.update-overview p {
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px var(--primary-glow);
}

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

.hero-button:hover {
    transform: translateY(-2px);
    color: var(--text-color);
    box-shadow: 0 5px 25px var(--primary-glow);
}

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

.hero-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(4px);
}

/* Update History Timeline Styles */
.update-timeline-wrapper {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.update-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%,
        var(--primary-light) 50%,
        var(--primary-dark) 100%);
    box-shadow: var(--neon-glow);
    top: 0;
}

.update-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.update-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.update-timeline-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--neon-glow);
}

.update-timeline-badge i {
    color: var(--text-color);
    font-size: 1.5rem;
}

.update-timeline-content {
    width: calc(50% - 50px);
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 15px;
    position: relative;
    margin-left: auto;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

.update-timeline-item:nth-child(even) .update-timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.update-timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--card-background);
    transform: rotate(45deg);
    border: 1px solid var(--primary-color);
    right: -10px;
}

.update-timeline-item:nth-child(even) .update-timeline-content::before {
    left: -10px;
    right: auto;
}

.update-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--primary-glow);
    background: var(--background-darker);
    text-decoration: none;
    color: var(--text-color);
}

.update-timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.update-timeline-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.update-details h4 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
}

.update-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.update-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.update-details li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .update-timeline-wrapper::before {
        left: 30px;
    }

    .update-timeline-badge {
        left: 30px;
        transform: none;
    }

    .update-timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .update-timeline-content::before {
        left: -10px !important;
        right: auto !important;
    }
}

/* Başvuru Formu Stilleri */
.register-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    min-height: 100vh;
    background: var(--background-dark);
}

.register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/prime-bg.png') center/cover fixed;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.register-card {
    background: var(--background-darker);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.register-header p {
    color: var(--text-muted);
}

.form-floating {
    margin-bottom: 1rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
    background: var(--background-darkest);
    border-color: var(--border-color);
    color: var(--text-color);
    height: auto;
}

.form-floating > label {
    color: var(--text-muted);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    background: var(--background-darkest);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

/* Textarea Stilleri */
.form-floating > textarea.form-control {
    min-height: 100px;
    line-height: 1.5;
    resize: vertical;
}

.form-floating > textarea.form-control:focus {
    background: var(--background-darkest);
}

/* Select Stilleri */
.form-floating > select.form-control {
    cursor: pointer;
    padding-right: 2.5rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-floating > select.form-control option {
    background: var(--background-darkest);
    color: var(--text-color);
    padding: 0.5rem;
}

/* Checkbox Stilleri */
.form-check {
    margin: 1.5rem 0;
}

.form-check-input {
    background-color: var(--background-darkest);
    border-color: var(--border-color);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-muted);
    cursor: pointer;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-register {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    opacity: 1;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-register:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

.register-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Row Spacing */
.row {
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .register-container {
        margin: 1rem auto;
    }

    .register-card {
        padding: 1.5rem;
    }

    .row {
        margin-bottom: 0;
    }

    .col-md-6:first-child {
        margin-bottom: 1rem;
    }
}