:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;

    /* Palette from the image: Gold/Amber and Teal/Cyan */
    --accent-gold: #FFD700;
    --accent-gold-glow: rgba(255, 215, 0, 0.6);
    --accent-cyan: #00F0FF;
    --accent-cyan-glow: rgba(0, 240, 255, 0.6);

    --card-bg: rgba(20, 20, 24, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);

    --tag-bg: rgba(255, 255, 255, 0.03);
    --tag-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 
   Background Effect: 
   Attempting to recreate the "Aurora / Circuit / Energy" vibe 
   using complex radial gradients and blending.
*/
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 120%, #0d1f2d, #000000);
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
}

/* Gold Energy Source */
.globe-1 {
    width: 600px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-gold), transparent 60%);
    top: -20%;
    left: -10%;
    opacity: 0.25;
    animation-delay: 0s;
}

/* Cyan Energy Source */
.globe-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan), transparent 60%);
    bottom: -10%;
    right: -10%;
    opacity: 0.25;
    animation-delay: -5s;
}

/* Additional ambient glow */
.globe-3 {
    width: 800px;
    height: 300px;
    background: linear-gradient(90deg, var(--accent-cyan-glow), var(--accent-gold-glow));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0.1;
    filter: blur(100px);
    animation: pulse 10s infinite alternate;
}

@keyframes float {

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

    50% {
        transform: translate(20px, 30px);
    }
}

@keyframes pulse {
    from {
        opacity: 0.05;
    }

    to {
        opacity: 0.15;
    }
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;

    /* Text Gradient reflecting the gold top / cyan bottom vibe */
    background: linear-gradient(to bottom, #ffffff 20%, #aaaaaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Subtle glow */
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, var(--accent-gold), #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 300;
}

strong {
    color: #fff;
    font-weight: 600;
}

/* Cards - Glassmorphism Premium */
section {
    margin-bottom: 2.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Card Hover Glow Effect */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px -10px rgba(0, 240, 255, 0.15);
    /* Cyan glow on hover */
}

.card>* {
    position: relative;
    z-index: 1;
}

h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Tags - Gold & Cyan accents */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: var(--tag-bg);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--tag-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2);
}

/* Special styling for Technologies section tags to vary it up */
.technologies .tag:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Links */
.links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cyber-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
}

.cyber-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.6s;
}

.delay-5 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 4rem 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .card {
        padding: 1.5rem;
    }
}