/* Custom Styles */
:root {
    --primary: #bd335c;
    --secondary: #ffb148;
}

/* Base Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Section Styles */
section {
    opacity: 1 !important;
    transform: none !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

/* Container Styles */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid Styles */
.grid {
    display: grid;
    gap: 2rem;
}

/* Card Styles */
.card, .hover-glow, .border-glow {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Text Styles */
h1, h2, h3, h4, h5, h6 {
    color: #1f2937;
    margin-bottom: 1rem;
}

p {
    color: #4b5563;
    line-height: 1.6;
}

/* Button Styles */
button {
    cursor: pointer;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Loading State */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Responsive Styles */
@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section Overlay */
.hero-overlay {
    background: linear-gradient(45deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
}

/* Blockchain Grid Overlay */
.blockchain-grid {
    background-image: 
        linear-gradient(rgba(189, 51, 92, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(189, 51, 92, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* Card Hover Effects */
.hover-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(189, 51, 92, 0.15);
    border-color: var(--primary);
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Button Styles */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Border Glow */
.border-glow::before {
    opacity: 0.1;
}

.border-glow:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(189, 51, 92, 0.15);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Custom Focus Styles */
:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
}

/* Text Selection */
::selection {
    background: var(--primary);
    color: white;
} 