@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

:root {
    --bg-color: #010214;
    --accent-blue: #4a8bf5;
    --accent-red: #ff4b4b;
    --accent-green: #4bffa8;
    --accent-orange: #ff7c4d;
    --text-main: #e0e0e0;
    --text-dim: #9b9eb3;
    --card-bg: rgba(10, 12, 30, 0.6);
    --border-color: rgba(100, 150, 255, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image:
        linear-gradient(rgba(40, 80, 200, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 80, 200, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, #091740 0%, #010214 70%);
    background-size: 30px 30px, 30px 30px, 100% 100%;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #1a3b8c 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    animation: pulse 4s infinite alternate;
    z-index: -1;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.4;
    }
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(100, 200, 255, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.logo-container {
    width: 170px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0px solid var(--accent-blue);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0a0067, #b3c7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 30px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    letter-spacing: 0.5px;
}

.btn-discord {
    background: rgba(88, 101, 242, 0.15);
    color: #7289da;
    border: 1px solid rgba(88, 101, 242, 0.4);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.btn-discord:hover {
    background: #5865F2;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
    border-color: #5865F2;
}

.btn-boosty {
    background: rgba(232, 81, 22, 0.15);
    color: #ff7c4d;
    border: 1px solid rgba(232, 81, 22, 0.4);
    box-shadow: 0 4px 15px rgba(232, 81, 22, 0.2);
}

.btn-boosty:hover {
    background: #E85116;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 81, 22, 0.5);
    border-color: #E85116;
}

/* Success Styles */
.success-bg {
    border-color: rgba(100, 255, 150, 0.15);
    background: rgba(12, 30, 12, 0.6);
}

.success-h1 {
    background: linear-gradient(135deg, #4bffa8, #66ffd1);
    -webkit-background-clip: text;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Error Styles */
.error-bg {
    border-color: rgba(255, 100, 100, 0.15);
    background: rgba(30, 12, 12, 0.6);
}

/* Command Box */
.command-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(75, 255, 168, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    position: relative;
}

.command-box span {
    display: block;
    color: #4bffa8;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.steam-id {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 1rem;
    color: #a0a0b0;
    margin-top: 20px;
}

/* Collections Page */
.collections-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.collection-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.collection-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.collection-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.collection-year {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.collection-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 5px;
}