/* Core Design Variables & Styling System */
:root {
    --bg-deep: #05070d;
    --bg-card: #0d1222;
    --bg-card-hover: #131b32;
    --bg-header: rgba(7, 10, 20, 0.85);
    
    --color-blue: #0052ff;
    --color-cyan: #00e5ff;
    --color-lime: #ccff00;
    --color-white: #ffffff;
    --color-gray-100: #f8fafc;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-600: #475569;
    --color-danger: #ff0055;
    
    --font-main: 'Tajawal', 'Inter', sans-serif;
    --font-numbers: 'Inter', sans-serif;
    
    --border-neon-cyan: 1px solid rgba(0, 229, 255, 0.3);
    --border-neon-lime: 1px solid rgba(204, 255, 0, 0.3);
    
    --shadow-cyan: 0 0 15px rgba(0, 229, 255, 0.25);
    --shadow-lime: 0 0 15px rgba(204, 255, 0, 0.25);
    --shadow-blue: 0 0 15px rgba(0, 82, 255, 0.3);
}

/* Global Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--color-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-cyan);
    border-radius: 4px;
    border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-lime);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight-cyan-lime {
    background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.accent-lime {
    color: var(--color-lime);
}

.highlight-cyan {
    color: var(--color-cyan);
}

.text-lime {
    color: var(--color-lime);
}

.text-cyan {
    color: var(--color-cyan);
}

/* Cyber Background Effects */
.cyber-bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -2;
}

.cyber-glow-orb {
    position: fixed;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.12;
}

.orb-blue {
    top: -10vw;
    right: -10vw;
    background: var(--color-cyan);
}

.orb-lime {
    bottom: -15vw;
    left: -10vw;
    background: var(--color-lime);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 100;
    transition: all 0.3s ease;
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--color-gray-300);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-cyan);
    background: rgba(0, 229, 255, 0.06);
}

.nav-link.active {
    border-bottom: 2px solid var(--color-cyan);
    border-radius: 4px 4px 0 0;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Skew Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-skew {
    transform: skewX(-10deg);
    border-radius: 2px;
}

.btn-skew span {
    display: inline-block;
    transform: skewX(10deg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-lime) 100%);
    color: var(--bg-deep);
    box-shadow: var(--shadow-lime);
}

.btn-outline {
    background: transparent;
    color: var(--color-cyan);
    border: 1px solid var(--color-cyan);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--shadow-cyan);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.btn-email {
    background: var(--bg-card);
    color: var(--color-cyan);
    border: 1px solid var(--color-cyan);
    box-shadow: var(--shadow-cyan);
}

.btn-email:hover {
    background: var(--color-cyan);
    color: var(--bg-deep);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.5s ease-out;
}

.btn-pulse:active::after {
    transform: scale(3);
    opacity: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 2px solid rgba(0, 229, 255, 0.1);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-new {
    background: rgba(204, 255, 0, 0.1);
    color: var(--color-lime);
    border: 1px solid rgba(204, 255, 0, 0.3);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-lime);
    box-shadow: 0 0 8px var(--color-lime);
    animation: pulse 1.5s infinite;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-lime);
    box-shadow: 0 0 8px var(--color-lime);
    animation: pulse 1.5s infinite;
    display: inline-block;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-desc {
    color: var(--color-gray-300);
    font-size: 1.1rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-showcase {
    position: relative;
    width: 100%;
    max-width: 380px;
    transform: rotate(2deg);
    transition: all 0.5s ease;
}

.hero-card-showcase:hover {
    transform: scale(1.05) rotate(0deg);
}

.hero-showcase-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-cyan);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

/* Sections Styling */
.main-content {
    position: relative;
    z-index: 5;
}

section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.section-header.text-center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-title {
    color: var(--color-cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

.section-desc {
    color: var(--color-gray-400);
    max-width: 600px;
    margin-top: 10px;
}

/* Rooms Grid & Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.no-rooms-fallback {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: var(--border-neon-cyan);
    text-align: center;
    gap: 15px;
}

.no-rooms-fallback i {
    font-size: 3rem;
    color: var(--color-gray-600);
}

.no-rooms-fallback p {
    color: var(--color-gray-400);
    font-size: 1.1rem;
}

/* Room Card (Skew & Premium) */
.room-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 28, 48, 0.9) 100%);
    border: var(--border-neon-cyan);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-lime);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--shadow-lime);
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.15) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    pointer-events: none;
}

.room-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-avatar-wrap {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-cyan);
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,229,255,0.2);
}

.player-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.player-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.player-username {
    font-size: 0.85rem;
    color: var(--color-cyan);
    font-family: var(--font-numbers);
}

.card-type-tag {
    margin-right: auto;
}

.tag-golden, .tag-friend {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag-golden {
    background: rgba(255, 170, 0, 0.15);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.15);
}

.tag-friend {
    background: rgba(0, 229, 255, 0.15);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

/* Badge for Room ID */
.room-badge-wrap {
    text-align: center;
}

.room-id-badge {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.25) 0%, rgba(0, 229, 255, 0.1) 100%);
    border: var(--border-neon-cyan);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 8px;
    font-family: var(--font-numbers);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.room-id-badge:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3) 0%, rgba(204, 255, 0, 0.2) 100%);
    border-color: var(--color-lime);
    box-shadow: var(--shadow-cyan);
}

.room-id-badge::after {
    content: '\f0c5'; /* FontAwesome copy icon */
    font-family: 'Font Awesome 6 Free';
    font-size: 0.9rem;
    color: var(--color-cyan);
    opacity: 0.7;
}

.room-id-badge:hover::after {
    color: var(--color-lime);
    opacity: 1;
}

.room-notes {
    font-size: 0.9rem;
    color: var(--color-gray-300);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 14px;
    border-radius: 6px;
    border-right: 3px solid var(--color-cyan);
    min-height: 50px;
}

.room-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

.countdown-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray-400);
}

.countdown-timer {
    font-family: var(--font-numbers);
    font-weight: 700;
    color: var(--color-lime);
    background: rgba(204, 255, 0, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.friend-req-status {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gray-400);
}

.friend-req-status.allowed {
    color: var(--color-lime);
}

.btn-share {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-300);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-share:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--color-cyan);
    color: var(--color-white);
}

/* Highlighted Room animation */
@keyframes highlight-glow {
    0% { border-color: var(--color-cyan); box-shadow: 0 0 10px rgba(0, 229, 255, 0.3); }
    50% { border-color: var(--color-lime); box-shadow: 0 0 25px rgba(204, 255, 0, 0.7); }
    100% { border-color: var(--color-cyan); box-shadow: 0 0 10px rgba(0, 229, 255, 0.3); }
}

.highlighted-room {
    animation: highlight-glow 2s infinite ease-in-out;
    border-width: 2px;
}

/* Create Room Form (Skew Card) */
.form-container-skew {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 28, 48, 0.95) 100%);
    border: var(--border-neon-cyan);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.form-container-skew::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(315deg, rgba(0, 229, 255, 0.1) 0%, transparent 100%);
    clip-path: polygon(100% 100%, 0 100%, 0 0);
    pointer-events: none;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--color-cyan);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--color-white);
    padding: 14px 18px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: left 18px center;
    background-size: 16px;
    cursor: pointer;
}

/* Avatar Grid Picker */
.picker-desc {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin-bottom: 10px;
}

.avatar-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
    background: rgba(0,0,0,0.25);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scrollbar for avatar grid */
.avatar-picker-grid::-webkit-scrollbar {
    width: 6px;
}
.avatar-picker-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.3);
    border-radius: 3px;
}

.avatar-option {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option:hover {
    border-color: var(--color-cyan);
    transform: scale(1.05);
}

.avatar-option.selected {
    border-color: var(--color-lime);
    box-shadow: var(--shadow-lime);
    transform: scale(1.05);
}

.avatar-option.selected::after {
    content: '\f058'; /* Check circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 4px;
    right: 4px;
    color: var(--color-lime);
    font-size: 0.95rem;
    text-shadow: 0 0 5px black;
}

/* Custom Checkbox */
.checkbox-group {
    margin-top: 5px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 32px;
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
    color: var(--color-gray-300);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 5px;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--color-cyan);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--color-cyan);
    border-color: var(--color-cyan);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-card-skew {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 82, 255, 0.15) 100%);
    border: var(--border-neon-cyan);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: skewY(-2deg);
}

.about-avatar-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-cyan);
    box-shadow: var(--shadow-cyan);
}

.about-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
}

.about-brand p {
    color: var(--color-lime);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    color: var(--color-gray-300);
    font-size: 1.05rem;
}

.contact-buttons-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Reviews & Ratings Section */
.reviews-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.skew-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 28, 48, 0.85) 100%);
    border: var(--border-neon-cyan);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-subtitle {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 12px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Star Rating Picker */
.star-rating-picker {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-btn:hover,
.star-btn:hover ~ .star-btn,
.star-btn.selected,
.star-btn.selected ~ .star-btn {
    color: var(--color-lime);
    text-shadow: 0 0 10px rgba(204, 255, 0, 0.4);
}

/* Live Feed of Reviews */
.reviews-feed-wrap {
    display: flex;
    flex-direction: column;
}

.reviews-feed-scroll {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 480px;
    overflow-y: auto;
    padding-left: 10px;
}

.reviews-feed-scroll::-webkit-scrollbar {
    width: 6px;
}
.reviews-feed-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.2);
    border-radius: 3px;
}

.feed-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s ease;
}

.feed-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.15);
}

.feed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar-placeholder {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.reviewer-name-txt {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-stars {
    color: var(--color-lime);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.review-time {
    color: var(--color-gray-600);
    font-size: 0.75rem;
}

.review-comment {
    color: var(--color-gray-300);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Toast Alert popup */
.toast-alert {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--bg-card) 0%, #151e36 100%);
    border: 1px solid var(--color-cyan);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--shadow-cyan);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-alert.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--color-lime);
    font-size: 1.2rem;
}

.toast-message {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Footer Styling */
.main-footer {
    background: #020306;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.footer-about {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gray-300);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: var(--color-cyan);
    color: var(--bg-deep);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--color-cyan);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul a {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links ul a:hover {
    color: var(--color-cyan);
    padding-right: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    color: var(--color-gray-600);
    font-size: 0.8rem;
}

.footer-bottom strong {
    color: var(--color-gray-400);
}

.disclaimer {
    margin-top: 6px;
    font-size: 0.75rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-card-skew {
        transform: none;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .reviews-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-bar-wrap {
        width: 100%;
    }
    
    .search-input-inner {
        width: 100%;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-container-skew {
        padding: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Search bar styling */
.search-bar-wrap {
    position: relative;
}

.search-input-inner {
    position: relative;
    width: 320px;
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--color-cyan);
    font-size: 0.9rem;
    pointer-events: none;
}

.search-input-inner input {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: var(--color-white);
    padding: 10px 42px 10px 20px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.search-input-inner input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
}

/* Mobile Nav Overlay styling */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 13, 0.98);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-content {
    position: relative;
    text-align: center;
}

.mobile-nav-close {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-link {
    color: var(--color-gray-300);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.mobile-link:hover {
    color: var(--color-cyan);
    transform: scale(1.05);
}

/* Fade out animation for expired rooms */
.fade-out {
    animation: fadeOutEffect 0.6s forwards ease-out;
}

@keyframes fadeOutEffect {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.9); }
}

/* Hero Section Shape Wave SVG */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
    transform: rotateY(180deg);
}

.hero-wave .shape-fill {
    fill: #05070d;
}
