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

:root {
    --primary-color: #3b82f6;
    --primary-hover: #60a5fa;
    --secondary-color: #2563eb;
    --accent-red: #ef4444;
    --accent-red-hover: #f87171;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --bg-primary: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.95);
    --border-color: rgba(59, 130, 246, 0.3);
    --border-red: rgba(239, 68, 68, 0.3);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 10px 15px -3px rgba(37, 99, 235, 0.4), 0 4px 6px -2px rgba(239, 68, 68, 0.3);
    --gradient: linear-gradient(135deg, #3b82f6 0%, #ef4444 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-red: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #7f1d1d 70%, #0f172a 100%);
    
    /* CARD WIDTH SETTINGS */
    /* Domyślnie: PROSTOKĄTNA (szeroka, 1200px) */
    --container-max-width: 1200px;
    --card-max-width: 100%;
    --card-padding: 40px 50px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
    }
}

/* Animated Background Particles */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(239, 68, 68, 0.15) 50%, transparent 100%);
    animation: float 20s infinite ease-in-out;
    filter: blur(1px);
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 80%;
    top: 10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 30%;
    top: 70%;
    animation-duration: 20s;
    animation-delay: -10s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 70%;
    top: 60%;
    animation-duration: 28s;
    animation-delay: -15s;
}

.particle:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 50%;
    top: 30%;
    animation-duration: 22s;
    animation-delay: -2s;
}

.particle:nth-child(6) {
    width: 70px;
    height: 70px;
    left: 15%;
    top: 50%;
    animation-duration: 26s;
    animation-delay: -8s;
}

.particle:nth-child(7) {
    width: 110px;
    height: 110px;
    left: 85%;
    top: 40%;
    animation-duration: 24s;
    animation-delay: -12s;
}

.particle:nth-child(8) {
    width: 50px;
    height: 50px;
    left: 40%;
    top: 80%;
    animation-duration: 18s;
    animation-delay: -6s;
}

.particle:nth-child(9) {
    width: 95px;
    height: 95px;
    left: 60%;
    top: 15%;
    animation-duration: 27s;
    animation-delay: -14s;
}

.particle:nth-child(10) {
    width: 65px;
    height: 65px;
    left: 25%;
    top: 90%;
    animation-duration: 23s;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.55;
    }
}

/* CS:GO/CS2 Background Effects */
.cs-crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.cs-crosshair::before,
.cs-crosshair::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, rgba(239, 68, 68, 0.3) 100%);
}

.cs-crosshair::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.cs-crosshair::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.bullet-trail {
    position: fixed;
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.6) 0%, rgba(239, 68, 68, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: bulletFly 8s infinite ease-out;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), 0 0 10px rgba(239, 68, 68, 0.3);
}

.bullet-trail:nth-child(12) {
    left: 15%;
    top: -100px;
    animation-delay: 0s;
    transform: rotate(25deg);
}

.bullet-trail:nth-child(13) {
    left: 75%;
    top: -100px;
    animation-delay: 3s;
    transform: rotate(-30deg);
}

.bullet-trail:nth-child(14) {
    left: 45%;
    top: -100px;
    animation-delay: 6s;
    transform: rotate(15deg);
}

@keyframes bulletFly {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    10% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 200px)) rotate(var(--rotation, 0deg));
    }
}


.container {
    width: 100%;
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.profile-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.5),
        0 10px 10px -5px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(59, 130, 246, 0.2),
        0 0 10px rgba(239, 68, 68, 0.15);
    padding: var(--card-padding, 40px 50px);
    text-align: center;
    width: 100%;
    max-width: var(--card-max-width, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #ef4444 50%, #3b82f6 100%);
    z-index: 1;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* 
    WERSJA KWADRATOWA (wąska, 420px)
    
    METODA 1 - Przez HTML (zalecane):
    Dodaj klasę 'card-compact' do tagu <body> w index.html:
    <body class="card-compact">
    
    METODA 2 - Przez CSS:
    Zmień wartości w :root powyżej:
    --container-max-width: 420px;
    --card-max-width: 420px;
    --card-padding: 40px 35px;
*/
body.card-compact {
    --container-max-width: 420px;
    --card-max-width: 420px;
    --card-padding: 40px 35px;
}

/* Avatar */
.avatar-container {
    margin-bottom: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(59, 130, 246, 0.4);
    transition: transform 0.3s ease;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 8px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    display: block;
}

.avatar:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 12px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Profile Info */
.profile-info {
    margin-bottom: 32px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(239, 68, 68, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 16px rgba(59, 130, 246, 0.2),
        0 4px 8px rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.profile-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #ef4444 100%);
    z-index: 1;
}

.name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bungee', cursive;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 10px rgba(239, 68, 68, 0.2);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.bio {
    font-size: 16px;
    color: rgba(191, 219, 254, 0.9);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* CSGO-Skins Promo */
.csgo-promo {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.35s backwards;
}

.csgo-promo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    min-height: 90px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.csgo-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    transition: all 0.3s ease;
    z-index: 0;
}

.csgo-promo-card:hover::before {
    left: 0;
}

.csgo-promo-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.csgo-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    height: 100%;
}

.csgo-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.csgo-promo-card:hover .csgo-logo {
    transform: scale(1.05);
}

.csgo-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1;
    position: relative;
    height: 100%;
}

.csgo-code-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.csgo-code {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Bungee', cursive;
}

.csgo-bonus {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    margin-top: 2px;
}

/* Wersja PROSTOKĄTNA (szeroka) - inny styl dla CSGO-Skins */
body:not(.card-compact) .csgo-promo-card {
    grid-template-columns: auto 1fr auto;
    justify-items: center;
    gap: 25px;
    padding: 20px 30px;
    min-height: 85px;
}

body:not(.card-compact) .csgo-logo-container {
    justify-content: flex-start;
}

body:not(.card-compact) .csgo-logo {
    height: 40px;
    max-width: 200px;
}

body:not(.card-compact) .csgo-code-container {
    align-items: flex-end;
    flex-grow: 1;
    justify-content: center;
}

body:not(.card-compact) .csgo-code-text {
    font-size: 11px;
}

body:not(.card-compact) .csgo-code {
    font-size: 20px;
    letter-spacing: 2px;
}

body:not(.card-compact) .csgo-bonus {
    font-size: 10px;
    max-width: 280px;
}

/* Wersja COMPACT (kwadratowa) - mniejsze rozmiary dla CSGO-Skins */
body.card-compact .csgo-promo-card {
    gap: 16px;
    padding: 16px 20px;
    min-height: 80px;
}

body.card-compact .csgo-logo {
    height: 35px;
    max-width: 150px;
}

body.card-compact .csgo-code-text {
    font-size: 10px;
}

body.card-compact .csgo-code {
    font-size: 18px;
    letter-spacing: 2px;
}

body.card-compact .csgo-bonus {
    font-size: 9px;
    padding: 0 8px;
}

/* Prize Header */
.prize-header {
    margin-bottom: 24px;
    text-align: center;
}

.prize-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-family: 'Bungee', cursive;
}

/* Links Section */
.links-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(96, 165, 250, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-align: left;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.link-card:hover::before {
    left: 0;
    opacity: 0.05;
}

.link-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
    border-left: 4px solid #3b82f6;
    border-right: 4px solid #ef4444;
    transform: translateY(-2px);
    box-shadow: 
        0 10px 15px -3px rgba(59, 130, 246, 0.3),
        0 4px 6px -2px rgba(239, 68, 68, 0.2);
}

.link-card:active {
    transform: translateY(0);
}

.link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.link-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.link-text {
    flex: 1;
    text-align: left;
    z-index: 1;
    position: relative;
}

/* Social Media Specific Colors */
.link-card[data-platform="youtube"]:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.link-card[data-platform="youtube"]:hover .link-icon svg {
    fill: #ff0000;
}

.link-card[data-platform="instagram"]:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.link-card[data-platform="instagram"]:hover .link-icon svg {
    fill: #e4405f;
}

.link-card[data-platform="twitter"]:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.link-card[data-platform="twitter"]:hover .link-icon svg {
    fill: #1da1f2;
}

.link-card[data-platform="tiktok"]:hover {
    border-color: #000000;
    color: #000000;
}

.link-card[data-platform="tiktok"]:hover .link-icon svg {
    fill: #000000;
}

.link-card[data-platform="discord"]:hover {
    border-color: #5865f2;
    color: #5865f2;
}

.link-card[data-platform="discord"]:hover .link-icon svg {
    fill: #5865f2;
}

/* Partner Links */
.link-card.partner {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.link-card.partner .partner-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.link-card.partner .link-text {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.partner-code {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Bungee', cursive;
    letter-spacing: 1px;
}

.partner-bonus {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 2px;
}

.link-card.partner:hover {
    border-color: rgba(59, 130, 246, 0.6);
    border-left: 4px solid #3b82f6;
    border-right: 4px solid #ef4444;
    color: var(--text-primary);
}

.link-card.partner:hover .partner-code {
    color: var(--primary-hover);
}

/* Partner Logo Styles */
.link-icon.partner-logo {
    width: 140px;
    height: 40px;
    min-width: 140px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.link-icon.partner-logo svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Contests Section */
.contests-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contest-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
    opacity: 0;
}

.contest-card.visible {
    opacity: 1;
}

.contest-card:hover {
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contest-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contest-image-container:hover {
    transform: scale(1.02);
}

.contest-image-container:hover .contest-image-overlay {
    opacity: 1;
}

.contest-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    max-height: 300px;
    display: block;
    transition: transform 0.3s ease;
}

.contest-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.contest-image-overlay::before {
    content: '🔍';
    font-size: 32px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contest-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contest-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.footer p {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
    }

    .profile-card {
        padding: 35px 40px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 95%;
    }

    .profile-card {
        padding: 30px 20px;
    }

    .name {
        font-size: 24px;
    }

    .prize-title {
        font-size: 18px;
        white-space: normal;
        padding: 0 10px;
    }

    .csgo-promo-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .csgo-logo-container {
        justify-content: center;
    }

    .csgo-code-container {
        align-items: center;
    }

    .csgo-logo {
        height: 40px;
        max-width: 200px;
    }

    .csgo-code {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .link-card {
        padding: 14px 16px;
        font-size: 15px;
    }

    .contest-card {
        padding: 16px;
    }

    .contest-title {
        font-size: 16px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .lightbox-content {
        max-width: 95%;
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.profile-card {
    animation: fadeInUp 0.8s ease-out;
}

.avatar {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.profile-info {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.prize-header {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.links-section {
    animation: fadeInUp 0.8s ease-out backwards;
}

.links-section:nth-of-type(1) {
    animation-delay: 0.5s;
}

.links-section:nth-of-type(2) {
    animation-delay: 0.6s;
}

.links-section:nth-of-type(3) {
    animation-delay: 0.7s;
}

.links-container .link-card {
    animation: slideInLeft 0.5s ease-out backwards;
}

.links-container .link-card:nth-child(1) { animation-delay: 0.1s; }
.links-container .link-card:nth-child(2) { animation-delay: 0.2s; }
.links-container .link-card:nth-child(3) { animation-delay: 0.3s; }
.links-container .link-card:nth-child(4) { animation-delay: 0.4s; }
.links-container .link-card:nth-child(5) { animation-delay: 0.5s; }

.contest-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.contest-card:nth-child(1) { animation-delay: 0.1s; }
.contest-card:nth-child(2) { animation-delay: 0.2s; }
.contest-card:nth-child(3) { animation-delay: 0.3s; }

