:root {
    --primary-color: #0A0E1F;
    --secondary-color: #2962ff;
    --accent-color: #3d84ff;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --dark-bg: #070912;
    --card-bg: #111426;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-hover: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --transition: all 0.3s ease-in-out;
    --bg-gradient: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(61, 132, 255, 0.1) 100%);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
    padding-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    padding: 120px 0 60px;
}

/* Important Notice Section */
.important-notice {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.9) 0%, rgba(26, 35, 126, 0.9) 100%);
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 35, 126, 0.8) 100%);
    padding: 4rem 0;
    position: relative;
}

/* Screenshots Section */
.screenshots {
    background: linear-gradient(-135deg, rgba(10, 17, 40, 0.85) 0%, rgba(26, 35, 126, 0.9) 100%);
    padding: 4rem 0;
    text-align: center;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.9) 0%, rgba(26, 35, 126, 0.85) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

/* Apple Store Button Styles */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.apple-download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 240px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.apple-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
}

.apple-download-btn i {
    font-size: 2.2rem;
    color: #ffffff;
}

.apple-download-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Microsoft Store Button Styles */
.ms-download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 240px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ms-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
}

.ms-download-btn i {
    font-size: 2.2rem;
    color: #ffffff;
}

.ms-download-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(61, 132, 255, 0.1) 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--card-bg);
}

.faq-answer p {
    padding: 0 20px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.2) 0%, rgba(61, 132, 255, 0.2) 100%);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 0;
}

.bokeh-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.faq::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.1) 0%, rgba(10, 14, 31, 0) 60%);
    animation: rotate 30s linear infinite;
}

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

/* Responsive Typography */
h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 14, 31, 0.95);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
}

.nav-brand span {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

/* Hero Section */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.7);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wave-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 40%;
    transform-origin: 50% 48%;
    animation: wave 15s infinite linear;
}

.wave:nth-child(2) {
    background: rgba(25, 118, 210, 0.15);
    animation: wave 30s infinite linear;
}

.wave:nth-child(3) {
    background: rgba(21, 101, 192, 0.2);
    animation: wave 45s infinite linear;
}

@keyframes wave {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Typography */
h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 14, 31, 0.95);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
}

.nav-brand span {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

/* Hero Section */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.7);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wave-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 40%;
    transform-origin: 50% 48%;
    animation: wave 15s infinite linear;
}

.wave:nth-child(2) {
    background: rgba(25, 118, 210, 0.15);
    animation: wave 30s infinite linear;
}

.wave:nth-child(3) {
    background: rgba(21, 101, 192, 0.2);
    animation: wave 45s infinite linear;
}

@keyframes wave {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 3rem;
}

.hero-text {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 550px;
    margin: 0;
    flex: 1;
}

.hero-feature {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Availability Box */
.availability-box {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.15) 0%, rgba(61, 132, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 380px;
}

.availability-box h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.9;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

a.platform-item.available:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(41, 98, 255, 0.3);
}

.platform-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.platform-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.platform-item.available i {
    color: var(--secondary-color);
}

.platform-item.coming-soon i {
    color: var(--text-secondary);
    opacity: 0.6;
}

.platform-item span:first-of-type {
    flex: 1;
    color: var(--text-color);
    font-weight: 500;
}

.platform-item.coming-soon span:first-of-type {
    opacity: 0.7;
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff;
}

.status-badge.coming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.device-mockup {
    position: relative;
    width: 100%;
}

.mockup-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-feature {
        width: 100%;
        min-height: 200px;
    }
}

/* Features Section */
.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(61, 132, 255, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }

/* Windows Feature Styles */
.windows-feature {
    border: 1px solid rgba(0, 120, 215, 0.3);
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.1) 0%, rgba(41, 98, 255, 0.1) 100%);
}

.windows-feature:hover {
    border-color: rgba(0, 120, 215, 0.6);
    box-shadow: 0 5px 15px rgba(0, 120, 215, 0.25);
}

.windows-feature .feature-icon {
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.2) 0%, rgba(41, 98, 255, 0.2) 100%);
}

.windows-feature .feature-icon i {
    color: #0078d7;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(45, 97, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.2) 0%, rgba(61, 132, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    display: block;
}

.feature-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

/* Download Section */
.download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.download-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(61, 132, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(45, 97, 255, 0.2);
}

.store-button i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.store-button span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Screenshots Section */
.screenshots h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.screenshots-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    flex: 0 1 calc(50% - 1rem);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 500px;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: var(--text-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.screenshot-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .screenshot-item {
        flex: 0 1 100%;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 35, 126, 0.95) 100%);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.footer-section:hover h3::after {
    width: 75px;
}

.footer-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    position: relative;
    color: var(--text-color);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Contact, Terms, Refund Pages */
.page-content {
    padding: 6rem 0;
    min-height: calc(100vh - 100px);
    background-color: var(--primary-color);
}

.page-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(61, 132, 255, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-content h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.page-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--text-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 97, 255, 0.3);
}

/* Contact Page */
.contact-section {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 35, 126, 0.95) 100%);
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 98, 255, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.info-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-color);
}

.contact-form {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 98, 255, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-with-icon textarea {
    min-height: 150px;
    resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.textarea-icon {
    top: 1.5rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        margin-bottom: 1rem;
    }
}

/* Terms Page Styles */
.terms-content h1,
.terms-content h2,
.terms-content h3,
.terms-content h4,
.terms-content h5,
.terms-content h6 {
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.terms-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.terms-section {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(61, 132, 255, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.terms-section ul li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.terms-section ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.terms-highlight {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.2) 0%, rgba(61, 132, 255, 0.2) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.terms-highlight p {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 1rem;
    }

    .terms-content h1 {
        font-size: 2rem;
    }

    .terms-section {
        padding: 1.5rem;
    }
}

/* Refund Section */
.refund-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.refund-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 98, 255, 0.1) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-color);
    opacity: 0.9;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

/* Privacy Section */
.privacy-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.privacy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-content .feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 98, 255, 0.1) 100%);
    transition: all 0.3s ease;
}

.privacy-content .feature-card:hover {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.2) 0%, var(--card-bg) 100%);
    transform: translateY(-5px);
}

/* Error Section */
.error-section {
    background: var(--gradient-primary);
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 98, 255, 0.1) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.error-image {
    position: relative;
    margin-bottom: 2rem;
}

.error-image i {
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.5;
}

.error-image span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-color);
}

.error-content h1 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.error-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.privacy-content h3,
.refund-content h3,
.terms-content h3 {
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.privacy-content,
.refund-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 98, 255, 0.1) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.privacy-content p,
.refund-content p,
.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-content ul,
.refund-content ul,
.terms-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content li,
.refund-content li,
.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-content h3,
.refund-content h3,
.terms-content h3 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-content,
.refund-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.privacy-content p,
.refund-content p,
.terms-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.privacy-content ul,
.refund-content ul,
.terms-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.privacy-content li,
.refund-content li,
.terms-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 0.5rem;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .screenshot-item img {
        max-width: 100%;
        height: auto;
    }

    .faq-container {
        width: 95%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Küçük Mobil Cihazlar İçin Ek Düzenlemeler */
@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        padding: 60px 0 30px;
    }

    .feature-card {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 15px 15px;
    }

    .footer {
        padding: 2rem 0;
    }
}
