/* Professional Design System for PANEC */

:root {
    /* Color Palette - PANEC Green Branding */
    --primary: #3d7c3f;
    --primary-light: #52a054;
    --primary-dark: #2d5f2f;
    --accent: #7ec580;
    /* Fresh green accent */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(15, 30, 15, 0.65);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-button: rgba(255, 255, 255, 0.05);
    --glass-button-hover: rgba(255, 255, 255, 0.15);

    /* Layout & Effects */
    --max-width: 420px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.4);
    --transition-fast: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-smooth: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0f0a;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    overflow-x: hidden;
}

/* Premium Background Image */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 15, 10, 0.4), rgba(13, 15, 10, 0.7)), url('bg-panec.png') center/cover no-repeat;
    z-index: -2;
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.1);
}

.background-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(61, 124, 63, 0.2) 0%, rgba(10, 15, 10, 0.8) 100%);
    z-index: -1;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    animation: fadeIn 1s var(--transition-smooth);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Profile Section */
.logo-container {
    position: relative;
    padding: 4px;
    background: linear-gradient(135deg, var(--glass-border), transparent);
    border-radius: 50%;
}

.logo {
    width: 110px;
    /* Slightly larger */
    height: 110px;
    background: var(--text-main);
    border-radius: 20px;
    /* Rounded square instead of circle */
    padding: 8px;
    /* Slightly less padding to show more content */
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.title .highlight {
    color: var(--accent);
    position: relative;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 8px;
}

/* Modern Glass Buttons */
.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--glass-button);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.link-button .button-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-button .icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    stroke-width: 2px;
}

.link-button .text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.link-button .arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

/* Button Hover State */
.link-button:hover {
    background: var(--glass-button-hover);
    border-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.link-button:hover .arrow {
    transform: translateX(4px);
    color: var(--accent);
}

.link-button:active {
    transform: scale(0.98);
}

/* Address Card */
.address-section {
    width: 100%;
    margin-top: 8px;
}

.address-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.address-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.address-text p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.address-text p:first-child {
    font-weight: 600;
    color: var(--text-main);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    body {
        padding: 30px 16px;
    }

    .title {
        font-size: 24px;
    }

    .logo {
        width: 90px;
        height: 90px;
    }
}