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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:focus,
.nav-link:active,
.nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.donate-link {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.donate-link::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000000;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100vh;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    visibility: hidden;
    min-height: 40px;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.rotating-text {
    display: inline-block;
    color: #8B5CF6;
    position: relative;
    width: 250px;
    text-align: left;
    overflow: visible;
    height: 1.2em;
    margin: 0;
}

.rotating-text span {
    display: block;
    position: absolute;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotating-text span.active {
    opacity: 1;
    transform: translateY(+10px);
}

.rotating-text span.exit {
    opacity: 0;
    transform: translateY(-20px);
}

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

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-height: auto;
    height: auto;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active,
.btn-primary:active:hover {
    transform: none !important;
    padding: 16px 32px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-secondary:active,
.btn-secondary:active:hover {
    transform: none !important;
    padding: 16px 32px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:active,
.btn-outline:active:hover {
    transform: none !important;
    padding: 16px 32px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.btn:active,
.btn:active:hover {
    transform: none !important;
    padding: 16px 32px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.btn:focus,
.btn:focus:hover {
    transform: none !important;
    padding: 16px 32px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

button:active,
button:active:hover,
a.btn:active,
a.btn:active:hover {
    transform: none !important;
    padding: 16px 32px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

button:focus,
button:focus:hover,
a.btn:focus,
a.btn:focus:hover {
    transform: none !important;
    padding: 16px 32px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Hero Visual - Video Container */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: translateX(-100px);
    animation: fadeInFromLeft 1.5s ease-out 0.5s forwards;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video-desktop {
    top: 20px;
}

.hero-video-mobile {
    display: none;
}

.video-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.98) 10%, 
        rgba(0,0,0,0.95) 20%, 
        rgba(0,0,0,0.9) 30%, 
        rgba(0,0,0,0.8) 40%, 
        rgba(0,0,0,0.6) 50%, 
        rgba(0,0,0,0.4) 60%, 
        rgba(0,0,0,0.2) 70%, 
        rgba(0,0,0,0.1) 80%, 
        rgba(0,0,0,0.05) 90%, 
        rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 2;
}

@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive video adjustments */
@media (max-width: 768px) {
    .hero-video {
        animation: fadeInFromLeft 1.2s ease-out 0.3s forwards;
    }
}

@media (max-width: 480px) {
    .hero-video {
        animation: fadeInFromLeft 1s ease-out 0.2s forwards;
    }
}

/* Overlay Background - exact match to RadialOverlay.jsx */
.overlay-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 25%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0.1) 90%, rgba(0,0,0,0) 100%);
    border-radius: 50%;
    pointer-events: none;
}

/* Main Overlay Content - exact match to RadialOverlay.jsx */
.overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ambient Blobs - exact match to RadialOverlay.jsx AmbientBlobs component */
.ambient-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: rgba(0,0,0,0.85);
    -webkit-mask-image: radial-gradient(closest-side at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(closest-side at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0) 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.12;
    animation: blobFloat 22s ease-in-out infinite;
}

.blob-primary {
    width: 20vw;
    height: 20vw;
    background: #8B5CF6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.5s ease-in-out;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.12); }
}

/* Group Title - exact match to RadialOverlay.jsx group title button */
.group-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(1000px) rotateX(10deg);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    user-select: none;
    z-index: 1;
    max-width: 85%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    overflow: visible;
    line-height: 1.0;
    max-height: 30%;
    transition: all 0.3s ease;
}

.title-text {
    font-size: 60px;
    font-weight: 900;
    color: #8B5CF6;
    text-shadow: none;
    -webkit-text-stroke: 1px rgba(139, 92, 246, 0.56);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: block;
}

.group-title:hover {
    transform: translate(-50%, -50%) perspective(1000px) rotateX(5deg);
}

.group-title:hover .title-text {
    color: #8B5CF6;
}

/* Main Card Container - exact match to RadialOverlay.jsx Card component */
.radial-overlay-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.6);
    padding: 32px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.stage-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Hub - exact match to RadialOverlay.jsx center hub positioning */
.center-hub {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

/* Add Shortcut Button - exact match to RadialOverlay.jsx */
.add-shortcut-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.add-shortcut-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.add-shortcut-btn:active,
.add-shortcut-btn:active:hover {
    transform: none !important;
    padding: 20px 12px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-shortcut-btn svg {
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation Buttons - exact match to RadialOverlay.jsx */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-btn:active,
.nav-btn:active:hover {
    transform: none !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.new-group-btn {
    width: auto;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 500;
}

.new-group-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Bottom Row - exact match to RadialOverlay.jsx */
.bottom-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    white-space: nowrap;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.settings-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.settings-btn:active,
.settings-btn:active:hover {
    transform: none !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Ring and Ticks - exact match to RadialOverlay.jsx RingAndTicks component */
.ring-and-ticks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.outer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ticks {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
}

.ticks::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, 0.15) 1deg, transparent 2deg, transparent 7.5deg, rgba(255, 255, 255, 0.15) 8.5deg, transparent 9.5deg);
    transform: translate(-50%, -50%);
}

/* Radial Drop Zone - exact match to RadialOverlay.jsx */
.radial-drop-zone {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 100;
    background: transparent;
    border: none;
}

/* Radial Shortcuts - exact match to RadialOverlay.jsx RadialItem component */
.radial-shortcuts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shortcut-group {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.shortcut-group.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.shortcut-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    pointer-events: all;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: crisp-edges;
    z-index: 5;
}

.shortcut-card {
    width: 144px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
    transform-origin: center center;
    transform: translate3d(0, 0, 0) scale(1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    text-rendering: geometricPrecision;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
}

.shortcut-card:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.shortcut-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.shortcut-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.2;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shortcut-status {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Position shortcuts in a circle - exact match to RadialOverlay.jsx positioning */
.shortcut-item[data-angle="0"] {
    transform: translate(-50%, -50%) translateY(-180px);
}

.shortcut-item[data-angle="60"] {
    transform: translate(-50%, -50%) translate(156px, -90px);
}

.shortcut-item[data-angle="120"] {
    transform: translate(-50%, -50%) translate(156px, 90px);
}

.shortcut-item[data-angle="180"] {
    transform: translate(-50%, -50%) translateY(180px);
}

.shortcut-item[data-angle="240"] {
    transform: translate(-50%, -50%) translate(-156px, 90px);
}

.shortcut-item[data-angle="300"] {
    transform: translate(-50%, -50%) translate(-156px, -90px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    margin-top: 0;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 120px 0;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}


.download-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-card.featured {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.download-card.coming-soon {
    cursor: default;
}

.download-card.coming-soon .download-title,
.download-card.coming-soon .download-description,
.download-card.coming-soon .coming-soon-message,
.download-card.coming-soon .coming-soon-message h4 {
    opacity: 0.6;
}

.download-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.coming-soon-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

.coming-soon-message h4 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.download-header {
    text-align: center;
    margin-bottom: 24px;
}

.download-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
    padding: 12px;
    box-sizing: border-box;
}

.platform-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.download-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.download-description {
    color: rgba(255, 255, 255, 0.7);
}

.download-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item svg {
    color: #ffffff;
    flex-shrink: 0;
}

.download-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.file-size {
    font-weight: 600;
}

.version {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #ffffff;
}

.system-requirements {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.system-requirements h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

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

.requirement {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    display: none;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement:last-child {
    border-right: none;
    padding-right: 0;
}

.requirement[data-platform="windows"] {
    display: block;
}

.requirement strong {
    color: #ffffff;
    font-weight: 600;
}

/* Support Section */
.support {
    padding: 120px 0;
    background: #000000;
}

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

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.support-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.support-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px;
}

.support-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
}

.support-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.support-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: 120px 0;
    background: #000000;
}

.roadmap-timeline {
    position: relative;
    margin-top: 80px;
    padding: 60px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #000000;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.timeline-item::before {
    content: attr(data-date);
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for roadmap */

@media (max-width: 768px) {
    .roadmap-timeline {
        margin-top: 60px;
        padding: 40px 0;
    }
    
    .timeline-items {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-line {
        top: 0;
        height: 100%;
        width: 2px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .timeline-marker {
        margin-bottom: 24px;
    }
}

/* Donate Section */
.donate {
    padding: 120px 0;
    background: #000000;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.donate-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

.donate-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.donate-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.benefit svg {
    color: #ffffff;
    flex-shrink: 0;
}

.donate-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.kofi-widget {
    width: 100%;
    max-width: 300px;
}

.kofi-button {
    display: block;
    background: linear-gradient(135deg, #ff5f5f 0%, #ff6b6b 100%);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 95, 95, 0.3);
}

.kofi-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 95, 95, 0.4);
}

.kofi-button:active,
.kofi-button:active:hover {
    transform: none !important;
    padding: 20px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.kofi-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.kofi-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kofi-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kofi-title {
    font-size: 18px;
    font-weight: 700;
}

.kofi-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.donation-options {
    text-align: center;
}

.donation-amounts {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}

.amount-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.amount-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.amount-btn:active,
.amount-btn:active:hover {
    transform: none !important;
    padding: 12px 20px !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.donation-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 32px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */

/* Mobile: Proper responsive layout for phones only */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 16px;
        text-align: left;
        height: auto;
        padding: 20px;
        align-items: start;
        position: relative;
    }
    
    .hero-content {
        max-width: 100%;
        grid-column: 1 / -1;
        display: contents;
        position: relative;
        z-index: 1;
    }
    
    .hero-badge {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 0;
        grid-column: 1 / -1;
        grid-row: 1;
        position: relative;
        z-index: 2;
        text-align: center;
    }
    
    .rotating-text {
        text-align: center;
        display: inline-block;
        width: auto;
        margin: 0 auto;
        position: relative;
    }
    
    .rotating-text span {
        text-align: center;
        left: 50%;
        width: auto;
        transform: translateX(-50%) translateY(20px);
    }
    
    .rotating-text span.active {
        transform: translateX(-50%) translateY(10px);
    }
    
    .rotating-text span.exit {
        transform: translateX(-50%) translateY(-20px);
    }
    
    .hero-visual {
        position: relative !important;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: 300px;
        min-height: 300px;
        overflow: visible;
        z-index: 0;
        margin: 16px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-video-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-video-desktop {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
        width: 250%;
        height: 250%;
        object-fit: cover;
        object-position: center center;
        position: absolute;
        top: -65%;
        left: 50%;
        z-index: 0;
        opacity: 1;
        animation: none;
        padding-top: 25px;
        /* Safari-specific fixes */
        -webkit-transform: translate3d(-50%, -0%, 0);
        transform: translate3d(-50%, -0%, 0);
        -webkit-playsinline: true;
        visibility: visible;
        /* Force hardware acceleration */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    .video-fade-overlay {
        display: none;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.5;
        grid-column: 1 / -1;
        grid-row: 3;
        padding-top: 85px;
        margin-top: 0;
        position: relative;
        z-index: 2;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: space-between;
        gap: 24px;
        flex-wrap: nowrap;
        grid-column: 1 / -1;
        grid-row: 4;
        align-self: start;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 0;
        grid-column: 1 / -1;
        grid-row: 5;
        align-self: start;
        position: relative;
        z-index: 2;
    }
    
    .hero-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .stat {
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
        min-height: auto;
        text-align: center;
    }
    
    .feature-title {
        font-size: 20px;
        text-align: center;
    }
    
    .feature-description {
        text-align: center;
    }
    
    .download {
        padding: 80px 0;
    }
    
    .download-options {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .download-card {
        padding: 24px;
    }
    
    .support {
        padding: 80px 0;
    }
    
    .support .section-header {
        text-align: center;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .support-card {
        padding: 24px;
        text-align: center;
    }
    
    .support-title {
        text-align: center;
    }
    
    .support-description {
        text-align: center;
    }
    
    .donate {
        padding: 80px 0;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .donate-text {
        order: 1;
        width: 100%;
    }
    
    .donate-widget {
        order: 2;
        width: 100%;
    }
    
    .donate-title {
        font-size: 32px;
    }
    
    .donate-description {
        font-size: 16px;
    }
    
    .donate-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .benefit {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Small mobile: Further optimizations */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .feature-card,
    .download-card,
    .support-card {
        padding: 20px;
    }
    
    .donate-title {
        font-size: 28px;
    }
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Override global transition for buttons to prevent size changes */
.btn,
button,
a.btn,
.kofi-button,
.amount-btn,
.nav-btn,
.add-shortcut-btn,
.settings-btn {
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
}

/* Focus States for Accessibility */
.btn:focus,
.amount-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Navigation links should not have focus outline */
.nav-link:focus {
    outline: none !important;
    outline-offset: 0 !important;
}

/* Remove ripple effects */
.btn,
button,
a.btn,
.kofi-button,
.amount-btn,
.nav-btn,
.add-shortcut-btn,
.settings-btn {
    position: relative;
    overflow: hidden;
}

.btn *,
button *,
a.btn * {
    position: relative;
    z-index: 1;
}

/* Remove any ripple elements */
.ripple {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-actions,
    .donate,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
