﻿        @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'VT323', monospace;
            color: #FFF;
            background-color: #171615;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .page-bg {
            background-image: url('../img/background.webp');
            background-repeat: repeat;
            background-size: cover;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
            filter: blur(6px);
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .main-content {
            flex-grow: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            gap: 40px;
            width: 100%;
            min-height: 0;
        }

        .ads-column {
            flex: 1 1 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            gap: 24px;
            max-width: 600px;
            min-width: 220px;
            height: 100%;
        }

        .vote-container {
            flex: 0 0 420px;
            max-width: 100vw;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 340px;
        }

        @media (max-width: 1100px) {
            .main-content {
                flex-direction: column;
                gap: 24px;
                align-items: stretch;
            }

            .ads-column {
                max-width: 100%;
                min-width: 0;
            }

            .vote-container {
                flex: 0 0 auto;
                min-width: 0;
            }
        }

        .vote-card {
            background-color: rgba(0, 0, 0, 0.3);
            border: 3px solid #000;
            padding: 25px;
            text-align: center;
            position: relative;
            box-shadow: inset 3px 3px 0px rgba(255, 255, 255, 0.04), inset -3px -3px 0px rgba(0, 0, 0, 0.2), 4px 4px 0px rgba(0, 0, 0, 0.5);
        }

        .server-preview {
            margin-bottom: 30px;
            border-bottom: 1px solid #2a2a2a;
            padding-bottom: 20px;
        }

        .server-icon {
            width: 84px;
            height: 84px;
            border: 3px solid #000;
            margin-bottom: 15px;
            image-rendering: pixelated;
        }

        .vote-title {
            font-family: 'Press Start 2P', cursive;
            color: #4ade80;
            font-size: 1.2rem;
            line-height: 1.5;
            margin-bottom: 10px;
            text-shadow: 2px 2px 0 #000;
        }

        .vote-subtitle {
            color: #aaa;
            font-size: 1.2rem;
        }

        .vote-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .input-group {
            text-align: left;
        }

        .input-label {
            display: block;
            color: #ddd;
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .retro-input {
            width: 100%;
            background: #181818;
            border: 3px solid #000;
            color: #fff;
            padding: 12px;
            font-family: 'VT323', monospace;
            font-size: 1.5rem;
            outline: none;
            box-shadow: inset 2px 2px 0px #000, inset -2px -2px 0px #333;
            transition: border-color 0.2s;
        }

        .retro-input:focus {
            border-color: #4ade80;
        }

        .captcha-container {
            display: flex;
            justify-content: center;
            margin: 10px 0;
        }

        .vote-btn {
            width: 100%;
            padding: 15px 25px;
            font-family: 'VT323', monospace;
            font-size: 1.2rem;
            background-color: #4CAF50;
            color: #FFF;
            border: 3px solid #000;
            cursor: pointer;
            box-shadow: 3px 3px 0px #000;
            transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
        }

        .vote-btn:hover {
            background-color: #66BB6A;
        }

        .vote-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 0px 0px 0px #000;
        }

        .vote-btn:disabled {
            background-color: #555;
            color: #888;
            cursor: not-allowed;
            transform: translate(2px, 2px);
            box-shadow: none;
        }


        /* Footer styles removed - using global-auth.css */


        /* Discord and Dropdown styles removed - using global-auth.css */

        .discord-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .discord-nav-link:hover {
            color: #4ade80;
        }

        .user-dropdown-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .user-dropdown-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            box-shadow: none !important;
        }

        .user-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 15px;
            background: #262423;
            border: 3px solid #000;
            min-width: 150px;
            display: none;
            flex-direction: column;
            z-index: 1000;
            box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
        }

        .user-dropdown-menu.show {
            display: flex;
        }

        .user-dropdown-item {
            padding: 12px 16px;
            color: #DDD;
            text-decoration: none;
            font-family: 'VT323', monospace;
            font-size: 1.2rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            border-bottom: 2px solid #333;
            transition: background 0.2s, color 0.2s;
            width: 100%;
            box-sizing: border-box;
        }

        .user-dropdown-item:last-child {
            border-bottom: none;
        }

        .user-dropdown-item:hover {
            background: #333;
            color: #4ade80;
        }

        .logout-btn-dropdown {
            color: #ff5252;
        }

        .logout-btn-dropdown:hover {
            color: #ff5252;
            background: #333;
        }