@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        cursor: url('images/cursor.png'), auto;
}

:root {
    --primary-bg: #000000;
    --secondary-bg: #000000;
    --tertiary-bg: #000000;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --accent: #ffffff;
    --border: #1a1a1a;
    --hover: #1a1a1a;
    --accent-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.dark-veil-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: block;
}

.darkveil-canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.waves-canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    animation: snowfall linear infinite;
    z-index: 1;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) translateX(0) translateZ(0);
        opacity: 0.8;
    }
    25% {
        transform: translateY(25vh) translateX(100px) translateZ(0);
    }
    50% {
        transform: translateY(50vh) translateX(-80px) translateZ(0);
    }
    75% {
        transform: translateY(75vh) translateX(120px) translateZ(0);
    }
    100% {
        transform: translateY(100vh) translateX(-50px) translateZ(0);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

.dock {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: dockSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

@keyframes dockSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dock-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dock-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.dock-icon {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dock-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.dock-link {
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dock-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.dock-link:hover .dock-icon {
    transform: scale(1.15);
}

.dock-link:hover .dock-icon-img {
    transform: scale(1.15);
}

.discord-dock:hover {
    background: rgba(88, 101, 242, 0.15);
}

.dock-label {
    display: inline;
    white-space: nowrap;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.dock-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.5rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-blur {
    display: none;
}

.hero-blur-1 {
    display: none;
}

.hero-blur-2 {
    display: none;
}

.hero-blur-3 {
    display: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: titleSequence 8s ease-in-out infinite;
    line-height: 1.1;
}

.title-blue {
    background: linear-gradient(135deg, #3b5bdb 0%, #4c6ef5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-white {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: url('images/cursor.png'), pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn:active {
    cursor: url('images/cursor.png'), grabbing;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: none;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-plan {
    width: 100%;
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(76, 110, 245, 0.4);
    margin-bottom: 1rem;
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
}

.btn-plan:hover {
    background-color: rgba(76, 110, 245, 0.1);
    border-color: rgba(76, 110, 245, 0.8);
    color: var(--text-primary);
}

.btn-premium {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.btn-premium:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.why-lucid {
    background: #0a0a0a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: transparent;
    backdrop-filter: none;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: cardPulse 3s ease-in-out infinite;
}

.why-card::before {
    display: none;
}

.why-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    background: transparent;
}

.why-card:hover::before {
    opacity: 0;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features {
    background-color: #0a0a0a;
}

.esp-preview-wrapper {
    margin-bottom: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.esp-preview {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.esp-health-bar-left {
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
}

.esp-health-fill {
    width: 100%;
    height: 75%;
    background: linear-gradient(180deg, #00ff00, #ffff00);
    border-radius: 4px;
    margin-top: auto;
}

.esp-player {
    position: absolute;
    width: 120px;
    height: 180px;
    cursor: grab;
    user-select: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    transition: transform 0.05s linear;
}

.esp-player:active {
    cursor: grabbing;
}

.esp-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.r6-part {
    position: absolute;
    transform-style: preserve-3d;
}

.r6-part > div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.r6-head {
    width: 10px;
    height: 10px;
    top: 0px;
    left: 50%;
    margin-left: -5px;
}

.r6-head > div:nth-child(1) { transform: translateZ(5px); }
.r6-head > div:nth-child(2) { transform: rotateY(180deg) translateZ(5px); }
.r6-head > div:nth-child(3) { transform: rotateY(90deg) translateZ(5px); }
.r6-head > div:nth-child(4) { transform: rotateY(-90deg) translateZ(5px); }
.r6-head > div:nth-child(5) { transform: rotateX(90deg) translateZ(5px); }
.r6-head > div:nth-child(6) { transform: rotateX(-90deg) translateZ(5px); }

.r6-torso {
    width: 20px;
    height: 20px;
    top: 10px;
    left: 50%;
    margin-left: -10px;
}

.r6-torso > div:nth-child(1) { transform: translateZ(2.5px); }
.r6-torso > div:nth-child(2) { transform: rotateY(180deg) translateZ(2.5px); }
.r6-torso > div:nth-child(3) { transform: rotateY(90deg) translateZ(10px); }
.r6-torso > div:nth-child(4) { transform: rotateY(-90deg) translateZ(10px); }
.r6-torso > div:nth-child(5) { transform: rotateX(90deg) translateZ(10px); }
.r6-torso > div:nth-child(6) { transform: rotateX(-90deg) translateZ(10px); }

.r6-left-arm {
    width: 10px;
    height: 20px;
    top: 12px;
    left: 0px;
}

.r6-left-arm > div:nth-child(1) { transform: translateZ(2.5px); }
.r6-left-arm > div:nth-child(2) { transform: rotateY(180deg) translateZ(2.5px); }
.r6-left-arm > div:nth-child(3) { transform: rotateY(90deg) translateZ(5px); }
.r6-left-arm > div:nth-child(4) { transform: rotateY(-90deg) translateZ(5px); }
.r6-left-arm > div:nth-child(5) { transform: rotateX(90deg) translateZ(10px); }
.r6-left-arm > div:nth-child(6) { transform: rotateX(-90deg) translateZ(10px); }

.r6-right-arm {
    width: 10px;
    height: 20px;
    top: 12px;
    right: 0px;
}

.r6-right-arm > div:nth-child(1) { transform: translateZ(2.5px); }
.r6-right-arm > div:nth-child(2) { transform: rotateY(180deg) translateZ(2.5px); }
.r6-right-arm > div:nth-child(3) { transform: rotateY(90deg) translateZ(5px); }
.r6-right-arm > div:nth-child(4) { transform: rotateY(-90deg) translateZ(5px); }
.r6-right-arm > div:nth-child(5) { transform: rotateX(90deg) translateZ(10px); }
.r6-right-arm > div:nth-child(6) { transform: rotateX(-90deg) translateZ(10px); }

.r6-left-leg {
    width: 10px;
    height: 20px;
    top: 30px;
    left: 35%;
}

.r6-left-leg > div:nth-child(1) { transform: translateZ(2.5px); }
.r6-left-leg > div:nth-child(2) { transform: rotateY(180deg) translateZ(2.5px); }
.r6-left-leg > div:nth-child(3) { transform: rotateY(90deg) translateZ(5px); }
.r6-left-leg > div:nth-child(4) { transform: rotateY(-90deg) translateZ(5px); }
.r6-left-leg > div:nth-child(5) { transform: rotateX(90deg) translateZ(10px); }
.r6-left-leg > div:nth-child(6) { transform: rotateX(-90deg) translateZ(10px); }

.r6-right-leg {
    width: 10px;
    height: 20px;
    top: 30px;
    right: 35%;
}

.r6-right-leg > div:nth-child(1) { transform: translateZ(2.5px); }
.r6-right-leg > div:nth-child(2) { transform: rotateY(180deg) translateZ(2.5px); }
.r6-right-leg > div:nth-child(3) { transform: rotateY(90deg) translateZ(5px); }
.r6-right-leg > div:nth-child(4) { transform: rotateY(-90deg) translateZ(5px); }
.r6-right-leg > div:nth-child(5) { transform: rotateX(90deg) translateZ(10px); }
.r6-right-leg > div:nth-child(6) { transform: rotateX(-90deg) translateZ(10px); }

.esp-info {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    width: 100%;
}

.esp-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.esp-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: transparent;
    backdrop-filter: none;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: cardPulse 3s ease-in-out infinite;
}

.feature-item::before {
    display: none;
}

.feature-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    background: transparent;
}

.feature-item:hover::before {
    opacity: 0;
}

.feature-check {
    display: none;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.plans {
    background: #0a0a0a;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.plan-card {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid rgba(76, 110, 245, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: cardPulse 3s ease-in-out infinite;
}

.plan-card::before {
    display: none;
}

.plan-card:hover {
    border-color: rgba(76, 110, 245, 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(76, 110, 245, 0.2);
    background: transparent;
}

.plan-card:hover::before {
    opacity: 0;
}

.plan-premium {
    border: 2px solid rgba(76, 110, 245, 0.6);
    transform: translateY(0px) scale(1.02);
}

.plan-premium:hover {
    border-color: rgba(76, 110, 245, 1);
    box-shadow: 0 0 20px rgba(76, 110, 245, 0.2);
    transform: translateY(-2px) scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-header {
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.plan-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.plan-features {
    margin-top: 0.8rem;
    position: relative;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.feature-row:last-child {
    border-bottom: none;
}

.check {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.check-na {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-row.coming-soon {
    opacity: 0.6;
    position: relative;
}

.check-blur {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    filter: blur(3px);
}

.feature-blur {
    filter: blur(3px);
}

.coming-soon-badge {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
}

.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.notification {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(76, 110, 245, 0.5);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.4s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(76, 110, 245, 0.1);
}

.notification.success {
    border-color: rgba(34, 197, 94, 0.5);
}

.notification.error {
    border-color: rgba(239, 68, 68, 0.5);
}

.notification.warning {
    border-color: rgba(251, 146, 60, 0.5);
}

.notification.info {
    border-color: rgba(59, 130, 246, 0.5);
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    color: #22c55e;
}

.notification.error .notification-icon {
    color: #ef4444;
}

.notification.warning .notification-icon {
    color: #fb923c;
}

.notification.info .notification-icon {
    color: #3b82f6;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.notification-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--text-primary);
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

.notification.removing {
    animation: slideOutRight 0.4s ease forwards;
}

.footer {
    background-color: #000000;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-discord-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.footer-discord-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@keyframes titleSequence {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
        filter: blur(10px);
    }
    15% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }
}

@keyframes cardPulse {
    0% {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.05);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.05);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(0px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(40px, 10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dock {
        padding: 0.4rem 1.2rem;
        gap: 0.6rem;
    }

    .dock-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }

    .dock-icon {
        font-size: 0.8rem;
    }

    .dock-logo {
        width: 18px;
        height: 18px;
    }

    .dock-icon-img {
        width: 16px;
        height: 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-premium {
        transform: scale(1);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .dock {
        padding: 0.35rem 1rem;
        gap: 0.5rem;
    }

    .dock-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .dock-icon {
        font-size: 0.7rem;
    }

    .dock-logo {
        width: 16px;
        height: 16px;
    }

    .dock-icon-img {
        width: 14px;
        height: 14px;
    }

    .dock-divider {
        height: 18px;
    }
}
