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

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* TEXT OVERFLOW FIX */
h1, h2, h3, p, span {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* TYPOGRAPHY SCALING FIX */
h1 {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffb5a7, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 24px;
    color: #ffffff;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 16px;
    color: #ff8fab;
}

p {
    font-size: clamp(14px, 2vw, 18px);
    color: #cccccc;
    margin-bottom: 16px;
}

/* STRICT CONTAINER CONTROL */
.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
}

/* NO ELEMENT BREAK RULE */
section {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: clamp(60px, 8vw, 110px);
    padding-bottom: clamp(60px, 8vw, 110px);
}

/* CONTENT NEVER OVERFLOWS */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER & NAV - RESPONSIVE GLASS */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 143, 171, 0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: clamp(12px, 2vw, 20px) 0;
}

.brand {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #d90429;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand span {
    color: #ffffff;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 24px);
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff8fab;
}

/* HERO - FULLY RESPONSIVE */
.hero {
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(217, 4, 41, 0.15) 0%, rgba(10, 10, 10, 1) 80%), url('images/hero-luxury-casino-bg.jpg') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, #0a0a0a 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    background: linear-gradient(135deg, #d90429, #ef233c);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: clamp(14px, 2vw, 16px);
}

.btn:hover {
    background: linear-gradient(135deg, #ff8fab, #d90429);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.4);
}

/* FLEX + GRID SAFETY RULE */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 30px);
}

.grid {
    display: grid;
    width: 100%;
    gap: clamp(20px, 3vw, 30px);
}

/* GRID BREAK FIX (IMPORTANT) */
@media (max-width: 640px) {
    .grid { grid-template-columns: 1fr; }
    .nav-links { display: none; /* simple mobile handling for raw html */ }
}
@media (min-width: 641px) and (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1025px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* CARD HEIGHT FIX (IMPORTANT) */
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 143, 171, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.15);
    border-color: rgba(255, 143, 171, 0.3);
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(16px, 3vw, 24px);
}

/* IMAGE RATIO FIX (NO CUT IMAGES) */
.card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* BUTTON ALIGNMENT FIX */
.card .btn, .card button {
    margin-top: auto;
    width: 100%;
}

/* TWO COLUMN FLEX SECTION */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(30px, 5vw, 60px);
}

.split-content, .split-image {
    flex: 1 1 min(100%, 500px);
}

.split-image img {
    border-radius: 12px;
    border: 1px solid rgba(255, 143, 171, 0.15);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* FORMS & INPUTS */
form {
    width: 100%;
    background: rgba(20, 20, 20, 0.6);
    padding: clamp(20px, 4vw, 40px);
    border-radius: 12px;
    border: 1px solid rgba(255, 143, 171, 0.1);
}

input, textarea, select {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 143, 171, 0.2);
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #d90429;
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.2);
}

/* FOOTER */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 143, 171, 0.1);
    padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 4vw, 30px);
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ff8fab;
    text-decoration: none;
    font-size: 14px;
}

/* PRICING CARDS SPECIFIC */
.price-tag {
    font-size: clamp(32px, 5vw, 48px);
    color: #ffffff;
    font-weight: 800;
    margin: 16px 0;
}
.price-tag span {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}
.features-list {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}
.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
    font-size: clamp(14px, 2vw, 16px);
}