    :root {
        --bg-primary: #0a0a0a;
        --bg-secondary: #111111a1;
        --bg-card: #1a1a1a;
        --bg-elevated: #222222;
        --text-primary: #ffffff;
        --text-secondary: #a1a1aa;
        --text-muted: #71717a;
        --accent-primary: #22c55e;
        --accent-secondary: #ef4444;
        --accent-tertiary: #f59e0b;
        --accent-gold: #fbbf24;
        --accent-silver: #94a3b8;
        --accent-bronze: #fb923c;
        --border-subtle: #27272a;
        --border-default: #3f3f46;
        --glow-subtle: rgba(34, 197, 94, 0.15);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        font-weight: 400;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid #353535;
        z-index: 1000;
        padding: 16px 0;
        padding-bottom: 20px;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--text-primary);
        font-family: 'JetBrains Mono', monospace;
        position: relative;
        height: 40px;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 100%;
        width: auto;
        max-width: 160px;
        object-fit: contain;
    }

    .logo::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-primary), transparent);
        animation: logoGlow 2s ease-in-out infinite alternate;
    }

    @keyframes logoGlow {
        0% {
            opacity: 0.5;
        }

        100% {
            opacity: 1;
        }
    }

    .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
    }

    .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 14px;
        position: relative;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent-primary);
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--accent-primary);
    }

    .nav-links a:hover::before {
        width: 100%;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding-top: 100px;
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, transparent 50%);
    }

    .hero-content h1 {
        font-size: clamp(48px, 8vw, 96px);
        font-weight: 700;
        margin-bottom: 24px;
        color: var(--text-primary);
        letter-spacing: -0.02em;
        line-height: 1.1;
        /*text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);*/
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 48px;
        color: var(--text-secondary);
        font-weight: 400;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-detail {
        background: var(--bg-card);
        padding: 24px;
        border: 1px solid var(--border-subtle);
        clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .hero-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .hero-detail:hover::before {
        left: 100%;
    }

    .hero-detail:hover {
        border-color: var(--accent-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    }

    .hero-detail-label {
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .hero-detail-value {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 12px 24px;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 14px;
        border: 1px solid;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        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.1), transparent);
        transition: left 0.4s ease;
    }

    .btn:hover::before {
        left: 100%;
    }

    .btn-primary {
        background: var(--accent-primary);
        color: var(--bg-primary);
        border-color: var(--accent-primary);
    }

    .btn-primary:hover {
        background: #16a34a;
        border-color: #16a34a;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border-color: var(--border-default);
    }

    .btn-secondary:hover {
        background: var(--bg-elevated);
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }

    .section {
        padding: 120px 0;
        position: relative;
    }

    .section-title {
        font-size: 48px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 24px;
        color: var(--text-primary);
        letter-spacing: -0.02em;
    }

    .section-subtitle {
        font-size: 18px;
        text-align: center;
        color: var(--text-secondary);
        margin-bottom: 80px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-text p {
        margin-bottom: 24px;
        color: var(--text-secondary);
        font-size: 16px;
        line-height: 1.7;
    }

    .about-highlight {
        background: var(--bg-card);
        padding: 32px;
        border: 1px solid var(--border-subtle);
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
        position: relative;
    }

    .about-highlight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-primary), transparent);
    }

    .about-highlight h3 {
        color: var(--accent-primary);
        margin-bottom: 16px;
        font-size: 20px;
        font-weight: 600;
    }

    .categories {
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
    }

    .dark_bg {
        background: var(--bg-secondary);
    }

    .categories-intro {
        text-align: center;
        margin-bottom: 80px;
    }

    .categories-intro h2 {
        font-size: 56px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 24px;
        letter-spacing: -0.02em;
    }

    .categories-intro .highlight {
        color: var(--accent-primary);
    }

    .categories-intro p {
        font-size: 20px;
        color: var(--text-secondary);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .slideshow-container {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
        overflow: hidden;
    }

    .slide {
        display: none;
        padding: 40px;
        text-align: center;
        min-height: 400px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .slide.active {
        display: flex;
    }

    .slide-image {
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: var(--bg-primary);
    }

    .slide-image img {
        width: 100%;
        height: 500px !important;
        object-fit: cover;
        display: block;
    }

    .slide h3 {
        font-size: 28px;
        color: var(--text-primary);
        margin-bottom: 16px;
        font-weight: 600;
    }

    .slide p {
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 600px;
        line-height: 1.6;
    }

    .slideshow-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
        background: var(--border-default);
        clip-path: polygon(0 0,
                calc(100% - 3px) 0,
                100% 3px,
                100% 100%,
                3px 100%,
                0 calc(100% - 3px));
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-dot:nth-child(-n+7).active {
        background: var(--accent-primary);
        transform: scale(1.2);
    }

    .nav-dot:nth-child(n+8):nth-child(-n+12).active {
        background: rgb(0, 187, 255);
        transform: scale(1.2);
    }

    .nav-dot:nth-child(n+13):nth-child(-n+16).active {
        background: #ffb000;
        transform: scale(1.2);
    }

    .slideshow-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg-elevated);
        border: 1px solid var(--border-default);
        color: var(--text-primary);
        padding: 12px 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    }

    .slideshow-controls:hover {
        background: var(--accent-primary);
        color: var(--bg-primary);
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }

    .prizes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        max-width: 900px;
        margin: 0 auto;
    }

    .prize-card {
        background: var(--bg-card);
        padding: 40px 24px;
        text-align: center;
        border: 2px solid var(--border-subtle);
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .prize-card.first {
        border-color: var(--accent-gold);
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), var(--bg-card));
    }

    .prize-card.second {
        border-color: var(--accent-silver);
        background: linear-gradient(135deg, rgba(148, 163, 184, 0.05), var(--bg-card));
    }

    .prize-card.third {
        border-color: var(--accent-bronze);
        background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), var(--bg-card));
    }

    .prize-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: var(--accent-primary);
    }

    .prize-card.first::before {
        background: linear-gradient(90deg, var(--accent-gold), #fcd34d);
    }

    .prize-card.second::before {
        background: linear-gradient(90deg, var(--accent-silver), #cbd5e1);
    }

    .prize-card.third::before {
        background: linear-gradient(90deg, var(--accent-bronze), #fdba74);
    }

    .prize-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .prize-rank {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .prize-card.first .prize-rank {
        color: var(--accent-gold);
    }

    .prize-card.second .prize-rank {
        color: var(--accent-silver);
    }

    .prize-card.third .prize-rank {
        color: var(--accent-bronze);
    }

    .prize-amount {
        font-size: 36px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 8px;
        font-family: 'JetBrains Mono', monospace;
    }

    .prize-note {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 16px;
        font-style: italic;
    }

    .organizers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-top: 60px;
    }

    .sponsors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 24px;
        margin-top: 60px;
    }

    .organizer-card,
    .sponsor-card {
        background: var(--bg-card);
        padding: 24px;
        text-align: center;
        border: 1px solid var(--border-subtle);
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        transition: all 0.3s ease;
    }

    .organizer-card:hover,
    .sponsor-card:hover {
        border-color: var(--accent-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    }

    .organizer-image,
    .sponsor-image {
        width: 80px;
        height: 80px;
        background: var(--bg-primary);
        border: 1px solid var(--border-default);
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sponsor-image {
        width: 320px;
        height: 150px;
        background: #131313;
        border: 1px solid var(--border-default, #a8a8a8);
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
        padding: 0px;
        margin: 0 auto 5px;
    }

    .sponsor-image img {
        width: auto !important;
        height: auto !important;
        max-width: calc(100% - 20px) !important;
        max-height: calc(100% - 20px) !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block;
        background: transparent;
    }

    @media (min-width: 1200px) {

        .sponsor-image {
            width: 320px;
            height: 170px;
            padding: 12px;
        }

        .sponsor-image img {
            max-width: calc(100% - 24px);
            max-height: calc(100% - 24px);
        }
    }

    @media (max-width: 480px) {

        .sponsor-image {
            width: 280px;
            height: 120px;
            padding: 8px;
        }

        .sponsor-image img {
            max-width: calc(100% - 16px);
            max-height: calc(100% - 16px);
        }
    }

    .location-tm-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .location-tm-details h3 {
        color: var(--accent-primary);
        margin-bottom: 16px;
        font-size: 20px;
        font-weight: 600;
    }

    .location-tm-details p {
        color: var(--text-secondary);
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 32px;
        margin-top: 60px;
    }

    .contact-item {
        text-align: center;
        padding: 24px;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        border-color: var(--accent-primary);
        transform: translateY(-2px);
    }

    .contact-icon {
        font-size: 24px;
        color: var(--accent-primary);
        margin-bottom: 16px;
    }

    .contact-item h3 {
        color: var(--text-primary);
        margin-bottom: 8px;
        font-size: 18px;
        font-weight: 600;
    }

    .contact-item a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-item a:hover {
        color: var(--accent-primary);
    }

    .footer {
        background: var(--bg-secondary);
        padding: 40px 0;
        text-align: center;
        border-top: 1px solid var(--border-subtle);
    }

    .footer p {
        color: var(--text-muted);
        font-size: 14px;
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .hero-details {
            grid-template-columns: 1fr;
        }

        .about-content,
        .location-tm-content {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
        }

        .categories-intro h2 {
            font-size: 40px;
        }

        .container {
            padding: 0 16px;
        }

        .slideshow-controls {
            display: none;
        }
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .info-panel {
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
    }

    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        margin-top: 60px;
    }

    #fractal-canvas {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0.25;
        pointer-events: none;
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .hero-details {
            grid-template-columns: 1fr;
        }

        .about-content,
        .location-tm-content {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
        }

        .categories-intro h2 {
            font-size: 40px;
        }

        .container {
            padding: 0 16px;
        }

        .slideshow-controls {
            display: none;
        }
    }

    .location-tm-content {
        grid-template-columns: 1fr;
    }

    .location-tm-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .location-tm-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin-bottom: 20px;
    }

    .location-tm-details {
        text-align: left;
    }

    .location-tm-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .feature {
        background-color: var(--bg-elevated);
        color: var(--text-secondary);
        padding: 8px 12px;
        margin: 4px;
        border-radius: 4px;
        font-size: 14px;
    }

    .platform-btn {
        padding: 5px;
        background-color: var(--accent-primary);
        color: #ffffff !important;
        text-decoration: none !important;
    }

    .platform-btn i {
        color: #ffffff !important;
    }

    .platform-btn:hover {
        background-color: var(--accent-primary) !important;
        border: none;
        color: #1a1a1a !important;
        text-decoration: none !important;
    }

    .platform-btn:hover i {
        color: #1a1a1a !important;
    }

    .event-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        padding: 28px;
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
        transition: all 0.3s ease;
    }

    .event-card:hover {
        border-color: var(--accent-primary);
        transform: translateY(-4px);
    }

    .event-graphic {
        width: 100%;
        height: 180px;
        border: 1px solid var(--border-default);
        background:
            linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02)),
            radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.10) 0%, transparent 50%),
            var(--bg-primary);
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        position: relative;
        overflow: hidden;
    }

    .event-graphic i {
        font-size: 48px;
        color: var(--accent-primary);
        opacity: 0.9;
    }

    .event-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 6px 0 10px;
    }

    .event-title i {
        color: var(--accent-primary);
    }

    .event-meta {
        color: var(--text-muted);
        font-size: 13px;
        margin-bottom: 8px;
    }

    .badge-group {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 10px 0 14px;
    }

    .badge {
        font-size: 12px;
        color: var(--text-primary);
        background: rgba(34, 197, 94, 0.08);
        border: 1px solid var(--border-default);
        padding: 6px 10px;
        border-radius: 6px;
    }

    .badge i {
        margin-right: 6px;
        color: var(--accent-primary);
    }

    .event-section h4 {
        color: var(--accent-primary);
        font-size: 16px;
        margin: 12px 0 8px;
        font-weight: 600;
    }

    .event-list {
        margin: 0;
        padding-left: 18px;
    }

    .event-list li {
        color: var(--text-secondary);
        margin: 6px 0;
    }

    .note {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 10px;
        font-style: italic;
    }

    .location-tm-details a {
        display: inline-block;
        color: var(--accent-primary);
        text-decoration: none;
        font-weight: 500;
        margin-top: 8px;
        border-bottom: 1px dashed var(--accent-primary);
        transition: all 0.3s ease;
    }

    .location-tm-details a:hover {
        color: #16a34a;
        border-bottom: 1px solid #16a34a;
    }

    .location-tm-description {
        margin-top: 12px;
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.6;
    }

    .footer a {
        position: relative;
        font-weight: 700;
        color: inherit;
        text-decoration: none;
    }

    .footer a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 100%;
        height: 1px;
        background: currentColor;
        transform-origin: left;
        animation: underlineMove 2s ease-in-out infinite alternate;
    }

    .footer a:hover {
        color: #b3b3b3;
    }

    @keyframes underlineMove {
        0% {
            transform: scaleX(0.2);
            opacity: 0.5;
        }

        100% {
            transform: scaleX(1);
            opacity: 1;
        }
    }

    .platform-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .platform-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .platform-icons svg {
        width: 34px;
        height: 34px;
        fill: currentColor;
    }

    .platform-icons a:hover {
        transform: translateY(-2px);
        opacity: 0.7;
    }