/*
Theme Name: DerGamingTrupp Theme
Author: Antigravity
Description: Custom Gamer Theme based on Valkivid design.
Version: 1.0
*/

:root {
    --bg-dark: #0f0e17;
    --bg-card: #1a1a2e;
    --accent: #e94560;
    --text-main: #fffffe;
    --text-muted: #a9a9a9;
    --glass: rgba(26, 26, 46, 0.8);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Header */
header {
    padding: 20px 0;
    background: var(--bg-card);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, #2e2136 0%, var(--bg-dark) 70%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.tool-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.tool-card h3 {
    margin-top: 0;
    color: var(--accent);
}

/* Socials */
.social-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.social-btn {
    background: #2a2a40;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    border: 1px solid #333;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; fill: currentColor; }