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

:root {
    --primary-color: #54ebff;
    --accent-color: #54ebff;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #121319;
    --bg-secondary: #17191f;
    --border-color: #17191f;
    --shadow-light: rgba(255, 255, 255, 0.1);
    --shadow-medium: rgba(255, 255, 255, 0.15);
    --shadow-dark: rgba(255, 255, 255, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

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

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

main {
    display: grid;
    gap: 3rem;
}

.button-section {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.button-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

a {
    color: var(--card-col);
    text-decoration: none;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
    text-align: center;
    flex-grow: 1;
}

a:hover {
    transform: scale(1.02);
    color: #000;
}

:root {
    --primary-color: #54ebff;
    --secondary-color: #8b5cf6;
    --accent-color: #54ebff;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #121319;
    --bg-secondary: #17191f;
    --border-color: #17191f;
    --shadow-light: rgba(255, 255, 255, 0.1);
    --shadow-medium: rgba(255, 255, 255, 0.15);
    --shadow-dark: rgba(255, 255, 255, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

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

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

main {
    display: grid;
    gap: 3rem;
}

.button-section {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.button-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.shadow {
    transition: 0.2s ease-out;
    filter: none;
    display: flex;
    justify-content: center;
}

.shadow:hover {
    /*filter: drop-shadow(2px 2px 2px var(--accent-color)) drop-shadow(-2px -2px 3px var(--primary-color));*/
    transform: translateY(-2px);
}

.triangle-wrapper {
    width: 10vw;
    height: calc(10vw / (1/ 0.8));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.triangle p {
    color: #FFF;
}

.link {
    color: var(--card-col);
    text-decoration: none;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
    text-align: center;
    flex-grow: 1;
}

.link:hover {
    transform: scale(1.02);
    color: #000;
    background-color: var(--primary-color);
}

footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
