@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.gradient-text {
    background: linear-gradient(135deg, #00d2ff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

:root {
    --primary-cyan: #00d2ff;
    --primary-blue: #003366;
    --bg-dark: #020617;
    --bg-surface: #0f172a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #f8fafc;
}

.glass {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(0, 210, 255, 0.04);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.skew-section {
    transform: skewY(-2deg);
}

.skew-content {
    transform: skewY(2deg);
}

.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}

@keyframes gemFloatSmall {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-gem-small {
    animation: gemFloatSmall 4s ease-in-out infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.skew-marquee-container {
    position: relative;
    z-index: 20;
    overflow: hidden;
    margin-top: -40px;
    margin-bottom: 20px;
    padding: 60px 0;
}

.skew-marquee-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.03), rgba(0, 210, 255, 0.08), rgba(0, 210, 255, 0.03));
    transform: skewY(3deg);
    border-top: 1px solid rgba(0, 210, 255, 0.1);
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
    backdrop-filter: blur(10px);
}

.skew-marquee-content {
    position: relative;
    z-index: 10;
}

.gradient-border {
    position: relative;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.5), rgba(59, 130, 246, 0.1), rgba(0, 210, 255, 0.2));
}

.gradient-border-inner {
    background: var(--bg-dark);
    border-radius: calc(1.5rem - 1px);
}

.container-custom {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

@media (min-width: 1280px) {
    .container-custom {
        padding-left: 12rem;
        padding-right: 12rem;
    }
}

.btn-primary:hover {
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.glow {
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Design Sample Utilities */
.glass-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes floatGem {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.animate-floatGem {
    animation: floatGem 4s ease-in-out infinite;
}