:root {
  --dpp-bg: #0d0f12;
  --dpp-surface: #1a1d24;
  --dpp-primary: #d4af37;
  --dpp-secondary: #8b0000;
  --dpp-text: #f0f0f0;
  --dpp-text-muted: #a0a5b0;
  --dpp-font-heading: 'Cinzel', serif;
  --dpp-font-body: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dpp-font-heading);
  color: var(--dpp-primary);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dpp-primary);
}

/* Header */
.dpp-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 15, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.dpp-logo {
  font-family: var(--dpp-font-heading);
  font-size: 1.8rem;
  color: var(--dpp-primary);
  font-weight: 700;
  letter-spacing: 2px;
}

.dpp-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.dpp-nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dpp-age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--dpp-primary);
  border-radius: 50%;
  color: var(--dpp-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Hero Section */
.dpp-hero {
  min-height: 100vh;
  display: flex;
  padding-top: 80px;
}

.dpp-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
}

.dpp-hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.dpp-hero-desc {
  font-size: 1.2rem;
  color: var(--dpp-text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

.dpp-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--dpp-primary);
  color: var(--dpp-bg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  border-radius: 0; /* Sharp corners */
  transition: all 0.3s ease;
}

.dpp-btn:hover {
  background: #f1c40f;
  transform: translateY(-3px);
}

.dpp-hero-right {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, var(--dpp-surface) 0%, var(--dpp-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dpp-hero-visual-1, .dpp-hero-visual-2 {
  position: absolute;
  background: var(--dpp-surface);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: 10px 10px 0 rgba(139, 0, 0, 0.4);
}

.dpp-hero-visual-1 {
  width: 300px;
  height: 300px;
  transform: rotate(-10deg);
  z-index: 2;
}

.dpp-hero-visual-2 {
  width: 250px;
  height: 250px;
  transform: rotate(15deg);
  right: 15%;
  bottom: 20%;
  z-index: 1;
  border-color: var(--dpp-secondary);
  box-shadow: 10px 10px 0 rgba(212, 175, 55, 0.2);
}

/* Sections General */
.dpp-section {
  padding: 6rem 5%;
}

.dpp-section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

/* Accommodations */
.dpp-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dpp-card {
  background: var(--dpp-surface);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 4px solid var(--dpp-secondary);
  transition: transform 0.3s ease;
  position: relative;
}

.dpp-card:hover {
  transform: translateY(-10px);
}

.dpp-card-featured {
  border-top: 4px solid var(--dpp-primary);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 2;
}

.dpp-card-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.dpp-emoji-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.dpp-card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.dpp-card-desc {
  color: var(--dpp-text-muted);
  margin-bottom: 2rem;
}

.dpp-card-price {
  font-weight: 600;
  color: var(--dpp-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Casino Section */
.dpp-casino-wrapper {
  background: var(--dpp-surface);
  padding: 4rem 2rem;
  border-left: 5px solid var(--dpp-primary);
}

/* Compliance Block */
.dpp-compliance {
  margin-top: 4rem;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  background: rgba(139, 0, 0, 0.05);
}

.dpp-compliance-text {
  font-size: 1.1rem;
  color: var(--dpp-primary);
  font-weight: bold;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.dpp-compliance-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--dpp-primary);
  border-radius: 50%;
  color: var(--dpp-primary);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.dpp-contact-flex {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.dpp-contact-info, .dpp-contact-form {
  flex: 1;
}

.dpp-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.dpp-input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: var(--dpp-bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dpp-text);
  font-family: var(--dpp-font-body);
}

.dpp-input:focus {
  outline: none;
  border-color: var(--dpp-primary);
}

/* Footer */
.dpp-footer {
  background: #000;
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.dpp-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.dpp-footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--dpp-text);
}

.dpp-footer-col ul {
  list-style: none;
}

.dpp-footer-col li {
  margin-bottom: 0.8rem;
}

.dpp-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--dpp-text-muted);
}

.dpp-footer-warning {
  color: var(--dpp-primary);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Cookie Banner */
.dpp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dpp-surface);
  border-top: 2px solid var(--dpp-primary);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.dpp-cookie-text {
  flex: 1;
  margin-right: 2rem;
}

.dpp-cookie-btn {
  background: var(--dpp-primary);
  color: var(--dpp-bg);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .dpp-hero { flex-direction: column; text-align: center; }
  .dpp-hero-right { display: none; }
  .dpp-nav { display: none; }
  .dpp-card-featured { transform: none; }
  .dpp-card-featured:hover { transform: translateY(-10px); }
  .dpp-contact-flex { flex-direction: column; }
  .dpp-cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
  .dpp-cookie-text { margin-right: 0; }
}
