/* style.css - Custom Esports Theme for thedobbssquad.com */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --bg-main: #06020f;
    --bg-card: #0d061e;
    --primary: #c084fc; /* Bright Purple */
    --secondary: #f43f5e; /* Cyber Pink */
    --accent: #22d3ee; /* Neon Cyan */
    --border-color: rgba(192, 132, 252, 0.15);
    --text-main: #f5f3ff;
    --text-muted: #a78bfa;
}

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

body {
    background-color: var(--bg-main);
    background-image: radial-gradient(circle at 10% 20%, rgba(192, 132, 252, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.05) 0%, transparent 40%);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
}

header {
    background: rgba(13, 6, 30, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    text-shadow: 0 0 10px var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 8px var(--primary);
}

.container { max-width: 1200px; margin: 4rem auto; padding: 0 1.5rem; }

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(13, 6, 30, 0.6) 0%, rgba(6, 2, 15, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(192, 132, 252, 0.1);
    margin-bottom: 4rem;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
}

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.15);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(244, 63, 94, 0.15);
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(192, 132, 252, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.6);
    transform: translateY(-2px);
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    background: #030107;
    margin-top: 6rem;
}
