:root {
    --primary-color: #FFFFFF;
    --secondary-color: #1A1A2E;
    --text-color: #FFFFFF;
    --text-color-muted: rgba(255, 255, 255, 0.7);
    --background-color: #0A0A1E;
    --gradient-start: rgba(255, 255, 255, 0.9);
    --gradient-end: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 30, 0.9);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 40px;
}

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

.nav-links a {
    color: var(--text-color-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Button Styles */
.primary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF, #B8B8B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color-muted);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    z-index: 1;
}

.gradient-sphere {
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, transparent, rgba(43, 80, 248, 0.1));
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

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

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

/* Footer Styles */
footer {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-color-muted);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-color-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-30px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 50vh;
        margin-top: 2rem;
    }
    
    .gradient-sphere {
        right: 50%;
        transform: translate(50%, -50%);
        width: 400px;
        height: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Content Section Styles */
.content-section {
    padding: 120px 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-color-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Card Styles */
.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.warning-card {
    background: rgba(255, 87, 87, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 87, 87, 0.2);
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    color: var(--primary-color);
    font-weight: 600;
}

td {
    color: var(--text-color-muted);
}

/* List Styles */
.feature-list, .warning-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li, .warning-list li {
    padding: 0.8rem 0;
    color: var(--text-color-muted);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.warning-list li:before {
    content: "!";
    color: #FF5757;
    position: absolute;
    left: 0;
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 100px 5% 3rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem;
    }

    .info-card, .warning-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lead {
        font-size: 1.1rem;
    }

    table {
        font-size: 0.8rem;
    }

    th, td {
        padding: 0.6rem;
    }
}

/* Mockup Styles */
.mockup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 3rem auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.mockup-frame {
    position: relative;
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.mockup-frame:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px 12px 0 0;
}

.mockup-frame:after {
    content: "• • •";
    position: absolute;
    top: 12px;
    left: 16px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    letter-spacing: 2px;
}

.mockup-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 24px;
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.mockup-frame:hover .mockup-image {
    transform: scale(1);
}

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

/* Responsive Mockup */
@media (max-width: 768px) {
    .mockup-container {
        margin: 2rem auto;
    }
    
    .mockup-frame {
        padding: 12px;
    }
    
    .mockup-frame:before {
        height: 32px;
    }
    
    .mockup-frame:after {
        top: 8px;
        left: 12px;
        font-size: 16px;
    }
    
    .mockup-image {
        margin-top: 20px;
    }
}

/* Text Section Styles */
.text-section {
    margin: 3rem 0;
    padding: 0 1rem;
}

.text-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.text-section p {
    color: var(--text-color-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.text-section ul {
    margin: 1.5rem 0;
}

.text-section ul li {
    margin-bottom: 1rem;
}

/* Responsive Text Adjustments */
@media (max-width: 768px) {
    .text-section {
        margin: 2rem 0;
        padding: 0 0.5rem;
    }

    .text-section h2 {
        font-size: 1.5rem;
    }

    .text-section p {
        font-size: 1rem;
    }
}

/* Secure Link Styles */
.secure-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.secure-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.secure-link:visited {
    color: rgba(255, 255, 255, 0.7);
}

.secure-link:active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-column {
        text-align: center;
    }
} 