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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0c12;
            color: #edf2f8;
            line-height: 1.4;
        }

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

        /* TOP BAR */
        .top-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            font-size: 2rem;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f5f9ff, #9efff0);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .auth-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.45rem 1.2rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
            color: #e2e8f0;
        }

        .auth-btn:first-child {
            background: rgba(20, 184, 166, 0.15);
            border-color: #2dd4bf;
            color: #99f6e4;
        }

        .auth-btn:first-child:hover {
            background: #2dd4bf;
            color: #0f172a;
        }

        .auth-btn:last-child:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-quest {
            text-align: center;
            margin-bottom: 2rem;
        }

        .hero-quest h2 {
            font-weight: 500;
            font-size: 1.2rem;
            background: rgba(45, 212, 191, 0.12);
            display: inline-block;
            padding: 0.4rem 1.5rem;
            border-radius: 60px;
            border: 1px solid rgba(45, 212, 191, 0.3);
            color: #ccfbf1;
        }

        /* Category Header */
        .category-inline {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .zen-icon {
            font-size: 2rem;
        }

        .zen-title {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e2e8f0, #5eead4);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        .sub-badge {
            background: #1e293b;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.7rem;
            color: #94a3b8;
        }

        /* MAP CONTAINER */
        .map-container {
            background: rgba(18, 22, 35, 0.85);
            border-radius: 1.8rem;
            border: 1px solid rgba(45, 212, 191, 0.25);
            padding: 1rem;
            margin-bottom: 2rem;
        }

        #map {
            height: 450px;
            border-radius: 1.2rem;
            z-index: 1;
        }

        /* CARDS GRID - με εικόνες */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .island-card {
            background: rgba(18, 22, 35, 0.85);
            backdrop-filter: blur(2px);
            border-radius: 1.5rem;
            border: 1px solid rgba(45, 212, 191, 0.25);
            padding: 1.2rem;
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
        }

        .island-card:hover {
            transform: translateY(-3px);
            border-color: rgba(45, 212, 191, 0.5);
        }

        .island-image {
            width: 100%;
            height: 150px;
            background-size: cover;
            background-position: center;
            border-radius: 1.2rem;
            margin-bottom: 1rem;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.5rem;
        }

        .card-icon-title {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .card-icon-title i {
            font-size: 1.6rem;
        }

        .card-icon-title h3 {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .stats-row {
            display: flex;
            justify-content: space-between;
            margin: 0.6rem 0 0.3rem;
        }

        .accommodations {
            background: #1e293b;
            padding: 0.2rem 0.7rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .percentage {
            font-weight: 800;
            color: #5eead4;
            font-size: 1.2rem;
        }

        .progress-bar-bg {
            background: #2d3748;
            border-radius: 20px;
            height: 8px;
            width: 100%;
            margin: 8px 0 12px;
        }

        .progress-fill {
            background: linear-gradient(90deg, #2dd4bf, #14b8a6);
            width: 0%;
            height: 100%;
            border-radius: 20px;
        }

        .card-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 12px;
        }

        .card-links a {
            font-size: 0.7rem;
            color: #99f6e4;
            text-decoration: none;
            background: rgba(45, 212, 191, 0.08);
            padding: 0.25rem 0.6rem;
            border-radius: 40px;
            transition: 0.2s;
            white-space: nowrap;
        }

        .card-links a:hover {
            background: rgba(45, 212, 191, 0.25);
        }

        /* SECONDARY CARDS */
        .secondary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0 1.5rem;
        }

        .compact-card {
            background: rgba(12, 15, 26, 0.9);
            border-radius: 1.5rem;
            border: 1px solid rgba(45, 212, 191, 0.25);
            padding: 1rem;
            display: flex;
            flex-direction: column;
            transition: 0.2s;
        }

        .compact-card:hover {
            border-color: rgba(45, 212, 191, 0.5);
        }

        .compact-cat-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }

        .compact-icon {
            font-size: 1.7rem;
        }

        .compact-title {
            font-weight: 800;
            font-size: 1.05rem;
            letter-spacing: -0.2px;
        }

        .compact-island-percent {
            font-weight: 600;
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #b9f3ea;
        }

        .compact-island-percent strong {
            color: white;
        }

        .compact-image {
            width: 100%;
            height: 160px;
            /* από 120px σε 160px */
            background-size: cover;
            background-position: center;
            border-radius: 1rem;
            margin: 8px 0 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        }

        .progress-small {
            background: #2d3748;
            border-radius: 20px;
            height: 6px;
            margin: 8px 0 6px;
        }

        .compact-stats {
            display: flex;
            justify-content: space-between;
            margin: 4px 0;
            font-size: 0.75rem;
        }

        .small-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 10px;
        }

        .small-links a {
            font-size: 0.75rem;
            color: #99f6e4;
            background: rgba(45, 212, 191, 0.05);
            padding: 0.2rem 0.5rem;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.2s;
        }

        .small-links a:hover {
            background: rgba(45, 212, 191, 0.2);
        }

        .stats-summary {
            background: rgba(0, 0, 0, 0.35);
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            margin: 1.2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            justify-content: space-between;
        }

        .footer-dark {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            font-size: 0.7rem;
            color: #8e9aaf;
        }

        @media (max-width: 700px) {
            .container {
                padding: 1rem;
            }

            .top-bar {
                flex-direction: column;
                gap: 0.8rem;
                align-items: stretch;
                text-align: center;
            }

            .auth-buttons {
                justify-content: center;
            }

            .card-links a {
                white-space: normal;
            }
        }

        .badge-tag {
            background: #1e2a3a;
            border-radius: 20px;
            padding: 0.1rem 0.6rem;
            font-size: 0.7rem;
        }

        /* Πρόσθεσε αυτό στο υπάρχον <style> */

        /* Ranking 5-στηλο grid */
        .ranking-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        /* Σε μεσαίες οθόνες (tablet) */
        @media (max-width: 1024px) {
            .ranking-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Σε μικρές οθόνες (κινητό) */
        @media (max-width: 768px) {
            .ranking-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Σε πολύ μικρές οθόνες */
        @media (max-width: 480px) {
            .ranking-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Ranking card styling */
        .ranking-card {
            background: #1e293b;
            border-radius: 1rem;
            border: 1px solid #334155;
            padding: 0.75rem;
            transition: all 0.2s;
        }

        .ranking-card:hover {
            border-color: #34d399;
            transform: translateY(-2px);
        }

        .ranking-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .ranking-rank {
            font-size: 1.25rem;
            font-weight: bold;
            color: #34d399;
        }

        .ranking-count {
            font-size: 0.7rem;
            color: #94a3b8;
        }

        .ranking-name {
            font-weight: bold;
            color: white;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ranking-image {
            width: 100%;
            height: 80px;
            background-size: cover;
            background-position: center;
            border-radius: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .ranking-percent {
            text-align: right;
            font-size: 1rem;
            font-weight: bold;
            color: #34d399;
            margin-bottom: 0.25rem;
        }

        .ranking-progress-bg {
            width: 100%;
            background: #334155;
            border-radius: 4px;
            height: 4px;
        }

        .ranking-progress-fill {
            background: #34d399;
            border-radius: 4px;
            height: 4px;
        }

        /* CTA Card - Βασικό */
        .cta-card {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(20, 184, 166, 0.1));
            border-radius: 1.5rem;
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(8px);
        }

        /* Τίτλος Call to Action */
        .cta-main-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(45, 212, 191, 0.2);
        }

        .cta-main-icon {
            font-size: 1.5rem;
        }

        .cta-main-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: #5eead4;
            letter-spacing: 1px;
            margin: 0;
        }

        /* Ενιαία Blocks (κείμενο + κουμπί) */
        .cta-buttons-vertical {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cta-option-block {
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid rgba(45, 212, 191, 0.25);
            border-radius: 1rem;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .cta-option-block:hover {
            background: rgba(45, 212, 191, 0.1);
            border-color: #2dd4bf;
            transform: translateX(4px);
        }

        .cta-option-content {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
        }

        .cta-option-icon {
            font-size: 1.8rem;
        }

        .cta-option-text {
            flex: 1;
        }

        .cta-option-title {
            font-weight: 700;
            color: white;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .cta-option-desc {
            font-size: 0.7rem;
            color: #94a3b8;
        }

        .cta-option-action {
            flex-shrink: 0;
        }

        /* Κουμπί Σύνδεσης (μία φορά) */
        .cta-login-small {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 2rem;
            padding: 0.45rem 1rem;
            font-size: 0.7rem;
            font-weight: 600;
            color: #5eead4;
            text-decoration: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            white-space: nowrap;
        }

        .cta-login-small:hover {
            background: #10b981;
            color: white;
            border-color: #10b981;
        }

        /* Περιεχόμενα καρτελών */
        .cta-tab-content {
            display: none;
        }

        .cta-tab-content.active {
            display: block;
        }

        .cta-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .cta-icon {
            font-size: 2rem;
        }

        .cta-title {
            font-size: 1.3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e2e8f0, #5eead4);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .cta-description {
            color: #cbd5e1;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .cta-highlight {
            color: #34d399;
            font-weight: 600;
        }

        ..cta-time-box {
            background: rgba(16, 185, 129, 0.1);
            border-radius: 0.75rem;
            padding: 1.2rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .cta-time-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .cta-time-icon {
            font-size: 1.3rem;
        }

        .cta-time-text {
            font-weight: 600;
            color: white;
            font-size: 1rem;
        }

        .cta-benefits-list {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0 0;
        }

        .cta-benefits-list li {
            color: #94a3b8;
            font-size: 0.9rem;
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cta-time-description {
            color: #94a3b8;
            font-size: 0.75rem;
            line-height: 1.4;
        }

        .cta-time-bold {
            color: #34d399;
            font-weight: 700;
        }

        .cta-steps {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .cta-step {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cta-step-number {
            width: 1.8rem;
            height: 1.8rem;
            background: rgba(16, 185, 129, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #34d399;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .cta-step-title {
            font-weight: 600;
            color: white;
            font-size: 0.85rem;
        }

        .cta-step-desc {
            font-size: 0.65rem;
            color: #94a3b8;
        }

        /* CTA Buttons Container (για τα κουμπιά στο τέλος) */
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            text-align: right;
        }

        .cta-login-btn {
            display: block;
            width: 100%;
            text-align: center;
            background: #10b981;
            color: white;
            font-weight: 700;
            padding: 0.7rem 1rem;
            border-radius: 0.75rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .cta-login-btn:hover {
            background: #059669;
            transform: translateY(-2px);
        }


        .cta-benefits-note {
            background: rgba(16, 185, 129, 0.1);
            border-radius: 0.75rem;
            padding: 0.7rem;
            margin: 1rem 0;
            text-align: center;
            color: #94a3b8;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .cta-benefits-note strong {
            color: #34d399;
        }

        /* Banner Δωρεάν & Γρήγορο */
        .cta-free-banner {
            background: rgba(16, 185, 129, 0.1);
            border-radius: 0.75rem;
            padding: 0.75rem;
            margin-top: 1.5rem;
            text-align: center;
            border: 1px solid rgba(16, 185, 129, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .cta-free-icon {
            font-size: 1.1rem;
        }

        .cta-free-text {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        .cta-free-text strong {
            color: #34d399;
            font-weight: 700;
        }

        /* Traveler Tab - Blue theme */
        .cta-login-btn-traveler {
            display: block;
            width: 100%;
            text-align: center;
            background: #3b82f6;
            color: white;
            font-weight: 700;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .cta-login-btn-traveler:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }

        .cta-register-text {
            text-align: center;
            font-size: 0.7rem;
            color: #64748b;
            margin-top: 0.5rem;
        }

        .cta-register-link {
            color: #34d399;
            text-decoration: none;
        }

        .cta-register-link:hover {
            text-decoration: underline;
        }

        /* Info Links Section */
        .info-links-section {
            margin-top: 3rem;
        }

        /* Info Cards Row - 5 στήλες σε μία σειρά */
        .info-cards-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        .info-card {
            flex: 1;
            min-width: 180px;
            max-width: 220px;
            background: rgba(18, 22, 35, 0.85);
            border-radius: 1.2rem;
            border: 1px solid rgba(45, 212, 191, 0.2);
            padding: 1.2rem;
            transition: all 0.3s;
        }

        .info-card:hover {
            transform: translateY(-4px);
            border-color: rgba(45, 212, 191, 0.5);
            background: rgba(30, 41, 59, 0.6);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .info-card {
                min-width: 200px;
                max-width: none;
                flex: 1 1 calc(33% - 1rem);
            }
        }

        @media (max-width: 768px) {
            .info-card {
                flex: 1 1 calc(50% - 1rem);
            }
        }

        @media (max-width: 480px) {
            .info-card {
                flex: 1 1 100%;
            }
        }

        .info-number {
            font-size: 2rem;
            font-weight: 800;
            color: #34d399;
            opacity: 0.5;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .info-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .info-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        .info-desc {
            font-size: 0.75rem;
            color: #94a3b8;
            line-height: 1.5;
            margin-bottom: 1rem;
            flex: 1;
        }

        .info-link {
            font-size: 0.7rem;
            color: #5eead4;
            text-decoration: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .info-link:hover {
            color: #34d399;
            gap: 0.5rem;
        }

        /* Sticky filters */
        .filters-container {
            position: sticky;
            top: 55px;
            z-index: 100;
            background: #0a0c12;
            padding: 10px 0;
            margin-bottom: 20px;
        }