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

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2a2233;
    font-size: 18px;
    background: linear-gradient(135deg, #faf6ff 0%, #f0f3fa 100%);
    overflow-x: hidden;
    position: relative;
}

/* Color Variables */
:root {
    --primary-violet: #b06df2;
    --secondary-green: #13950e;
    --text-main: #222;
    --text-standard: #444;
    --text-muted: #aaa;
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-border: #ede6ff;
    --glass-shadow: #b06df211;
    --light-violet: #e2d4fa;
}

/* Dynamic Background */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #faf6ff 0%, #f0f3fa 100%);
}

#parallax-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(176, 109, 242, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(19, 149, 14, 0.1) 0%, transparent 50%);
    z-index: -1;
}

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

/* Glass Effects */
.glass-card, .glass-section, .glass-nav, .glass-btn {
    background: var(--glass-bg);
    border: 1.5px solid var(--primary-violet);
    box-shadow: 0 6px 38px var(--glass-shadow);
    border-radius: 22px;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(176, 109, 242, 0.1);
}

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

.vortex-logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
}

.vor-text {
    color: var(--primary-violet);
    text-shadow: 0 0 10px rgba(176, 109, 242, 0.5);
}

.tex-text {
    color: var(--secondary-green);
    text-shadow: 0 0 10px rgba(19, 149, 14, 0.5);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-violet);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-violet);
    background: rgba(176, 109, 242, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-violet);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, var(--primary-violet), #d084ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

.title-subtitle {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-standard);
    margin-top: 10px;
    font-style: italic;
}

@keyframes glow {
    from { 
        filter: drop-shadow(0 0 5px rgba(176, 109, 242, 0.5));
        text-shadow: 0 0 10px rgba(176, 109, 242, 0.3);
    }
    to { 
        filter: drop-shadow(0 0 20px rgba(176, 109, 242, 0.8));
        text-shadow: 0 0 20px rgba(176, 109, 242, 0.6);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-standard);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 120px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-violet);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary {
    background: var(--primary-violet);
    color: white;
    border: 2px solid var(--primary-violet);
}

.btn-primary:hover {
    background: white;
    color: var(--primary-violet);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(176, 109, 242, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-violet);
    border: 2px solid var(--primary-violet);
}

.btn-secondary:hover {
    background: var(--primary-violet);
    color: white;
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.vortex-3d {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vortex-ring {
    position: absolute;
    border: 2px solid var(--primary-violet);
    border-radius: 50%;
    opacity: 0.7;
    animation: rotate 10s linear infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    border-color: var(--primary-violet);
    animation-duration: 8s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    border-color: var(--secondary-green);
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 260px;
    height: 260px;
    border-color: var(--primary-violet);
    animation-duration: 15s;
    opacity: 0.4;
}

.vortex-center {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-violet), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(176, 109, 242, 0.5);
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-violet);
    border-bottom: 2px solid var(--primary-violet);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-violet);
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 0 10px rgba(176, 109, 242, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-violet), var(--secondary-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-standard);
    max-width: 600px;
    margin: 0 auto;
}

/* Mirrors Section */
.mirrors {
    background: rgba(255, 255, 255, 0.3);
}

.mirror-box {
    padding: 40px;
    margin-bottom: 30px;
}

.mirror-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mirror-item {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
}

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

.mirror-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-green);
    box-shadow: 0 0 10px rgba(19, 149, 14, 0.5);
    animation: pulse-dot 2s infinite;
}

.mirror-status.online {
    background: var(--secondary-green);
}

.mirror-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.1rem;
    color: var(--primary-violet);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    color: var(--secondary-green);
    text-shadow: 0 0 5px rgba(19, 149, 14, 0.5);
}

.mirror-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mirror-warning {
    padding: 20px;
    text-align: center;
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.mirror-warning i {
    color: #ff6b6b;
    margin-right: 10px;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.text-block {
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.text-block:hover {
    transform: translateY(-5px);
}

.text-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-block p {
    color: var(--text-standard);
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-violet), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Registration Flow */
.registration {
    background: rgba(255, 255, 255, 0.3);
}

.registration-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-violet), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-standard);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-image {
    margin-top: 15px;
}

.placeholder-image {
    width: 200px;
    height: 120px;
    background: var(--glass-bg);
    border: 2px dashed var(--primary-violet);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-violet);
}

.placeholder-image i {
    font-size: 2rem;
}

.phishing-warning {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

.phishing-warning i {
    color: #ff6b6b;
    margin-right: 8px;
}

/* Crypto Section */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.crypto-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 109, 242, 0.1), transparent);
    transition: left 0.5s;
}

.crypto-card:hover::before {
    left: 100%;
}

.crypto-card:hover {
    transform: translateY(-10px);
}

.crypto-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-violet), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

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

.crypto-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 15px;
}

.crypto-card p {
    color: var(--text-standard);
    line-height: 1.6;
    margin-bottom: 20px;
}

.crypto-rate {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(176, 109, 242, 0.1);
    border-radius: 12px;
}

.rate-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.rate-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-violet);
    font-family: 'IBM Plex Mono', monospace;
}

.crypto-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--primary-violet);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.crypto-info {
    padding: 30px;
    text-align: center;
}

.crypto-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 20px;
}

.wallet-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.wallet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(176, 109, 242, 0.1);
    border-radius: 25px;
    color: var(--primary-violet);
    font-weight: 500;
}

/* Security Timeline */
.security {
    background: rgba(255, 255, 255, 0.3);
}

.security-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.security-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-violet), var(--secondary-green));
    transform: translateX(-50%);
}

.timeline-item {
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    width: calc(50% - 30px);
    transition: transform 0.3s ease;
}

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

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

.timeline-item:hover {
    transform: scale(1.02);
}

.timeline-icon {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-violet), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(176, 109, 242, 0.5);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -55px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -55px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-standard);
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(176, 109, 242, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin: 0;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Footer */
.footer {
    padding: 60px 0 20px;
    margin-top: 50px;
}

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

.footer-logo {
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-standard);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

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

.footer-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-violet);
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
    color: var(--text-standard);
    transition: color 0.3s ease;
}

.footer-section li:hover {
    color: var(--primary-violet);
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid var(--light-violet);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(176, 109, 242, 0.1);
        padding: 20px 0;
        border-radius: 0 0 20px 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
    }

    .mirror-grid {
        grid-template-columns: 1fr;
    }

    .wallet-grid {
        flex-direction: column;
        align-items: center;
    }

    .security-timeline::before {
        left: 25px;
    }

    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-item .timeline-icon {
        left: -55px !important;
        right: auto !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .title-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .vortex-3d {
        width: 200px;
        height: 200px;
    }

    .ring-1 { width: 80px; height: 80px; }
    .ring-2 { width: 140px; height: 140px; }
    .ring-3 { width: 200px; height: 200px; }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(176, 109, 242, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-violet);
    animation: spin 1s ease-in-out infinite;
}

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

