/* aifurryporn.pw - Main Stylesheet */
:root {
    --primary: #6200EA; /* Deep purple */
    --primary-dark: #3700B3;
    --primary-light: #BB86FC;
    --accent: #03DAC6; /* Teal accent */
    --background: #121212;
    --surface: #1E1E1E;
    --error: #CF6679;
    --on-primary: #FFFFFF;
    --on-background: #FFFFFF;
    --on-surface: #FFFFFF;
    --on-error: #000000;
    --text-primary: rgba(255, 255, 255, 0.87);
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-hint: rgba(255, 255, 255, 0.38);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
}

/* Animated Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    opacity: 0.8;
    z-index: -2;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px, 25px 25px;
    animation: parallaxBg 60s linear infinite;
}

@keyframes parallaxBg {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 1000px 500px, 400px 200px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: var(--on-primary);
    box-shadow: 0 4px 20px rgba(98, 0, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(98, 0, 234, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.btn-outline:hover {
    background: rgba(187, 134, 252, 0.1);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(45deg, var(--accent), #018786);
    color: var(--on-primary);
    font-size: 16px;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(3, 218, 198, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(3, 218, 198, 0.6);
}

.btn-nav {
    background: linear-gradient(45deg, var(--accent), #018786);
    color: var(--on-primary);
    padding: 8px 16px;
    border-radius: 50px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    margin-right: 15px;
}

.site-title h1 {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--on-primary);
}

.site-title p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--primary-light);
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    position: relative;
}

.glitch {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-light);
    position: relative;
    text-shadow: 3px 3px 0 var(--primary-dark);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--accent);
    z-index: -1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    color: var(--primary);
    z-index: -2;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
    left: 2px;
}

@keyframes glitch-anim-1 {
    0%, 100% { clip: rect(39px, 9999px, 94px, 0); transform: skew(0.15deg); }
    20% { clip: rect(52px, 9999px, 95px, 0); transform: skew(0.8deg); }
    40% { clip: rect(10px, 9999px, 85px, 0); transform: skew(0.35deg); }
    60% { clip: rect(76px, 9999px, 5px, 0); transform: skew(0.2deg); }
    80% { clip: rect(75px, 9999px, 53px, 0); transform: skew(0.75deg); }
}

@keyframes glitch-anim-2 {
    0%, 100% { clip: rect(45px, 9999px, 50px, 0); transform: skew(0.3deg); }
    20% { clip: rect(34px, 9999px, 33px, 0); transform: skew(0.5deg); }
    40% { clip: rect(73px, 9999px, 76px, 0); transform: skew(0.45deg); }
    60% { clip: rect(2px, 9999px, 78px, 0); transform: skew(0.1deg); }
    80% { clip: rect(86px, 9999px, 22px, 0); transform: skew(0.58deg); }
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
}

.cyber-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.inner-circle {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: rotate 8s linear infinite;
}

.middle-circle {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1px dashed var(--primary-light);
    opacity: 0.7;
    animation: rotate-reverse 12s linear infinite;
}

.outer-circle {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 3px solid rgba(187, 134, 252, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

.hologram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hologram-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards, glow 2s ease-in-out 3s infinite alternate;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 2px var(--accent)); }
    to { filter: drop-shadow(0 0 8px var(--accent)); }
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 218, 198, 0.3) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.tech-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.highlight {
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 30%;
    background: rgba(3, 218, 198, 0.2);
    z-index: -1;
    transform: skew(-15deg);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #1e1e1e, #2d2d2d);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: -1;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--background), #080808);
    overflow: hidden;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-content {
    background: rgba(30, 30, 30, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(187, 134, 252, 0.3);
    overflow: hidden;
}

.gallery-svg {
    width: 100%;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

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

.gallery-item h3 {
    font-size: 20px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.gallery-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--primary-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-dark) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: -1;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    position: relative;
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.tech-visual {
    flex: 1;
    min-width: 300px;
}

.tech-diagram {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.node {
    width: 100px;
    height: 100px;
    background: var(--surface);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
}

.node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 1px dashed var(--accent);
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite;
}

.node-label {
    color: var(--on-primary);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.node-1 { left: 0; }
.node-2 { left: 50%; transform: translateX(-50%); }
.node-3 { right: 0; }

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

.tech-steps {
    flex: 1;
    min-width: 300px;
}

.tech-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.8;
    line-height: 1;
}

.step-content h3 {
    font-size: 22px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(98, 0, 234, 0.3) 0%, transparent 70%);
    z-index: -1;
}

/* Footer */
footer {
    background: var(--surface);
    padding: 80px 0 40px;
    position: relative;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    margin-left: 15px;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-hint);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-visual {
        opacity: 0.5;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .tech-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        overflow: hidden;
        transition: height 0.4s ease;
        z-index: 1000;
        padding: 0;
        visibility: hidden;
    }
    
    .nav-links.active {
        height: calc(100vh - 80px);
        visibility: visible;
        padding: 30px;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .glitch {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-nav {
        width: 100%;
    }
    
    .footer-column {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .tech-step {
        flex-direction: column;
        gap: 10px;
    }
}
