:root {
    --primary: rgb(236, 72, 153);
    --secondary: rgb(147, 51, 234);
    --background: rgb(12, 12, 13);
    --foreground: rgb(255, 255, 255);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
}

.root {
    position: fixed;
    inset: 0;
    height: 100dvh;
}

.background {
    position: absolute;
    inset: 0;
}

.bg-image {
    position: absolute;
    inset: 0;
    background-image: url('./Cyberpunk.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(236, 72, 153, 0.08) 30%,
        rgba(147, 51, 234, 0.12)
    );
    z-index: 1;
}

.bg-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.glow-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background: rgba(236, 72, 153, 0.12);
    filter: blur(140px);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.glow-2 {
    position: absolute;
    bottom: 33%;
    right: 33%;
    width: 33%;
    height: 33%;
    background: rgba(147, 51, 234, 0.12);
    filter: blur(120px);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.content {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.container {
    width: 92%;
    max-width: 768px;
    margin: 0 auto;
    padding: 2rem 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0;
}

.logo {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .header {
        width: 100%;
        max-width: 768px;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
        justify-content: center;
    }

    .logo {
        width: 8rem;
        height: 8rem;
    }

    h1 {
        font-size: 3.8rem;
    }
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 
        0 8px 20px -3px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(236, 72, 153, 0.3);
}

.title-group {
    text-align: left;
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    background: linear-gradient(45deg, #fff, #f9a8d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.8rem;
    }
}

.badge {
    position: relative;
    top: 0;
    right: 0;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 0.375rem;
    transform: scale(0.8) translateY(-6px);
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    -webkit-text-fill-color: initial;
    color: white;
    animation: pulseSmall 2s infinite;
}

@media (min-width: 768px) {
    .badge {
        transform: scale(0.8) translateY(-20px);
        animation: pulseLarge 2s infinite;
    }
}

@keyframes pulseSmall {
    0%, 100% { 
        transform: scale(0.8) translateY(-6px);
    }
    50% { 
        transform: scale(0.85) translateY(-6px);
    }
}

@keyframes pulseLarge {
    0%, 100% { 
        transform: scale(0.8) translateY(-20px);
    }
    50% { 
        transform: scale(0.85) translateY(-20px);
    }
}

.subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 1.25rem;
    }
}

section {
    width: 100%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 1.2rem;
    padding: 1.8rem;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

section:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.1);
}

h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address-item {
    display: flex;
    align-items: center;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.8rem;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.address-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.address-item:hover::before {
    transform: translateX(100%);
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
}

.label {
    font-size: 0.8rem;
}

.url, .email {
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(236, 72, 153);
}

.url:hover, .email:hover {
    color: rgb(249, 168, 212);
}

.tips ul {
    list-style: none;
}

.tips li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.tips li::before {
    content: "•";
    margin-right: 0.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.contact {
    text-align: center;
}

.email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgb(236, 72, 153);
}

.email:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
} 