:root {
            --primary-blue: #1A3D7C;
            --secondary-blue: #4D8EFF;
            --light-blue: #E6F0FF;
            --accent-gold: #D4AF37;
            --dark-gold: #B08C30;
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fb;
            color: #333;
            line-height: 1.6;
        }

        .header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234d8eff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .logo-container {
            margin-bottom: 1.5rem;
        }

        .logo {
            height: 80px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .header-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
            list-style: none;
        }

        .breadcrumb-item {
            margin: 0 0.5rem;
        }

        .breadcrumb-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-link:hover {
            color: var(--white);
            text-decoration: underline;
        }

        .breadcrumb-divider {
            color: rgba(255, 255, 255, 0.5);
        }

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

        .sondages-container {
            display: grid;
            gap: 2rem;
        }

        .sondage-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .sondage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .sondage-header {
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            padding: 1.5rem;
            position: relative;
        }

        .sondage-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .sondage-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .sondage-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sondage-body {
            padding: 1.5rem;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .option-card {
            background: var(--light-blue);
            border: 2px solid #dee2e6;
            border-radius: 12px;
            padding: 1.25rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            position: relative;
        }

        .option-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary-blue);
            box-shadow: 0 4px 15px rgba(26, 61, 124, 0.1);
        }

        .option-card.selected {
            border-color: var(--secondary-blue);
            background: rgba(77, 142, 255, 0.05);
            box-shadow: 0 4px 15px rgba(77, 142, 255, 0.15);
        }

        .option-card.selected::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 40px;
            height: 40px;
            background: var(--secondary-blue);
            border-radius: 0 12px 0 40px;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
        }

        .option-card.selected::after {
            content: "✓";
            position: absolute;
            top: 5px;
            right: 5px;
            color: white;
            font-weight: bold;
            font-size: 1rem;
        }

        .option-radio {
            margin-right: 1rem;
            width: 1.3em;
            height: 1.3em;
            border: 2px solid var(--dark-gray);
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .option-radio::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0.7em;
            height: 0.7em;
            background: var(--secondary-blue);
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
        }

        .option-card.selected .option-radio::after {
            opacity: 1;
        }

        .option-text {
            font-weight: 500;
            color: var(--primary-blue);
        }

        .vote-button {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vote-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(26, 61, 124, 0.3);
        }

        .vote-button::after {
            content: "🗳";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }

        .results-container {
            padding: 1.5rem;
        }

        .result-item {
            margin-bottom: 1.5rem;
        }

        .result-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .result-text {
            font-weight: 600;
            color: var(--primary-blue);
        }

        .result-percentage {
            color: var(--secondary-blue);
            font-weight: 700;
        }

        .progress-container {
            height: 40px;
            background: var(--light-blue);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            border-radius: 10px;
            position: relative;
            transition: width 1s ease-in-out;
        }

        .progress-value {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .result-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 0.25rem;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        .thank-you {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f8ff 100%);
            border-radius: 12px;
            margin-top: 1.5rem;
        }

        .thank-you-icon {
            font-size: 3rem;
            color: var( --primary-blue);
            margin-bottom: 1rem;
            animation: pulse 1.5s infinite;
        }

        .thank-you-text {
            font-size: 1.25rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        .empty-icon {
            font-size: 4rem;
            color: var(--secondary-blue);
            margin-bottom: 1.5rem;
            opacity: 0.7;
        }

        .empty-title {
            font-size: 1.75rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .empty-text {
            color: var(--dark-gray);
            max-width: 500px;
            margin: 0 auto;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }


        @media (max-width: 768px) {
            .header-title {
                font-size: 2rem;
            }
            
            .header-subtitle {
                font-size: 1.1rem;
            }
            
            .sondage-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .options-grid {
                grid-template-columns: 1fr;
            }
        }








        