/* Compact Footer Styling */
footer {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    margin: 20px auto;
    max-width: 500px;
}

/* Footer Container - Compact Square Design */
.footer-container {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #ff4081;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.7), 
                0 0 30px rgba(255, 64, 129, 0.3) inset;
    padding: 15px;
    display: grid;
    grid-template-areas: 
        "creds creds"
        "links1 links2"
        "links3 links4";
    gap: 12px;
    position: relative;
    overflow: hidden;
}

/* Neon Corner Accents */
.footer-container::before,
.footer-container::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #f9a602;
    box-shadow: 0 0 10px #f9a602;
}

.footer-container::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
}

.footer-container::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 10px 0;
}

/* Footer Sections */
.footer-creds {
    grid-area: creds;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 64, 129, 0.3);
}

.footer-creds p {
    margin: 5px 0;
    color: #ddd;
    font-size: 0.8rem;
    text-shadow: 0 0 5px rgba(255, 64, 129, 0.5);
}

/* Link Groups */
.footer-links {
    display: contents;
}

.footer-links a {
    display: block;
    padding: 8px 5px;
    background: rgba(31, 31, 31, 0.7);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-links a:nth-child(1) { grid-area: links1; }
.footer-links a:nth-child(2) { grid-area: links2; }
.footer-links a:nth-child(3) { grid-area: links3; }
.footer-links a:nth-child(4) { grid-area: links4; }

/* Link Styling */
.footer-link {
    color: #ff80ab;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.footer-link:hover {
    color: #f9a602;
    transform: translateY(-2px);
    background: rgba(255, 64, 129, 0.2);
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #f9a602;
    transition: all 0.3s;
}

.footer-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Copyright Highlight */
.footer-creds p:first-child {
    color: #f9a602;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .footer-container {
        grid-template-areas: 
            "creds"
            "links1"
            "links2"
            "links3"
            "links4";
        padding: 12px;
    }
    
    .footer-links a {
        padding: 10px 5px;
    }
}

/* Pulsing Animation */
@keyframes footerPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 64, 129, 0.7), 
                    0 0 30px rgba(255, 64, 129, 0.3) inset;
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 64, 129, 0.9), 
                    0 0 40px rgba(255, 64, 129, 0.4) inset;
    }
}

.footer-container:hover {
    animation: footerPulse 3s infinite;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark, immersive background */
    color: #ffffff;
    background-image: url('dota-background.jpg'); /* Add a Dota-themed background image */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
/* Subtle Grid Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 10%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}


/* Slide-in Animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Apply Slide-in Animation to Header */
header {
    text-align: center;
    padding: 40px 20px;
    background-color: #1e1e1e;
    border-bottom: 2px solid #ff4081;
    box-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081; /* Subtle neon glow effect */
    background-image: linear-gradient(to right, #2a2a2a, #1e1e1e, #2a2a2a);
    animation: slideIn 2s ease-out; /* Slide-in animation */
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #f9a602; /* Rich gold color, reminiscent of Dota 2's fantasy theme */
    text-shadow: 0 0 10px #f9a602, 0 0 20px #ff4081; /* Glow effect */
}

h2 {
    font-size: 1.8rem;
    color: #ff4081;
    text-shadow: 0 0 8px #ff4081, 0 0 15px rgba(255, 64, 129, 0.7);
}

/* Main Content Styling */
main {
    padding: 20px;
}

.accounts {
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #ff4081;
    text-shadow: 0 0 10px #ff4081, 0 0 20px rgba(255, 64, 129, 0.7);
}

/* Account Card Styling */
.account-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between account cards */
}

.account-card {
    background-color: rgba(31, 31, 31, 0.9); /* Semi-transparent for a mystical look */
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border: 2px solid #f9a602; /* Gold border for a premium feel */
    transition: transform 0.3s, box-shadow 0.3s;
    animation: slideIn 1.5s ease-out; /* Slide-in animation */
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #ff4081, 0 0 20px rgba(255, 20, 147, 0.7);
}

.account-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #ff4081; /* Highlight the image with neon accents */
    animation: float 3s ease-in-out infinite; /* Floating animation */
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f9a602; /* Matches the Dota 2 gold aesthetic */
    margin: 10px 0;
    text-shadow: 0 0 10px #f9a602;
}

/* Button Styling */
button {
    background-color: #ff4081;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    box-shadow: 0 0 10px #ff4081, 0 0 20px rgba(255, 64, 129, 0.7); /* Neon glow */
}

button:hover {
    background-color: #ff80ab;
    box-shadow: 0 0 15px #ff80ab, 0 0 25px rgba(255, 128, 171, 0.7);
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    border-top: 2px solid #ff4081;
    box-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081; /* Subtle neon glow effect */
    background-image: linear-gradient(to right, #2a2a2a, #1e1e1e, #2a2a2a);
    color: #f9a602;
    text-shadow: 0 0 10px #f9a602;
}

/* Footer Links Styling */
.footer-link {
    color: #ff4081; /* Matches the neon pink of your theme */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #f9a602; /* On hover, the link changes to gold */
}

/* Hero Section Styling */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(30, 30, 30, 0.9);
    background-image: url('dota-hero-banner.jpg'); /* Add a Dota 2 hero banner image */
    background-size: cover;
    background-position: center;
    border: 2px solid #f9a602;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7), 0 0 30px #f9a602;
    margin-bottom: 40px;
    animation: slideIn 1.5s ease-out; /* Slide-in animation */
}

.hero-section h2 {
    font-size: 2.5rem;
    color: #f9a602;
    text-shadow: 0 0 15px #f9a602, 0 0 30px #ff4081;
}

.hero-section p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 15px;
    line-height: 1.5;
}

/* Pay Now Button Styling */
.whatsapp-button {
    display: inline-block;
    background-color: #ff4081; /* Neon pink similar to other buttons */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    width: 100%;
    box-shadow: 0 0 10px #ff4081, 0 0 20px rgba(255, 64, 129, 0.7); /* Neon glow effect */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.whatsapp-button:hover {
    background-color: #ff80ab; /* Lighter pink shade on hover */
    box-shadow: 0 0 15px #ff80ab, 0 0 25px rgba(255, 128, 171, 0.7);
}

.whatsapp-button:active {
    background-color: #f50057; /* A slightly darker pink for active state */
    box-shadow: 0 0 10px #f50057, 0 0 20px rgba(255, 20, 147, 0.7);
}

/* Reset some default styles */
body, h1, h2 {
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background-color: #222; /* Dark background for the header */
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Promotional Banner Styling */
.promo-banner {
    display: flex; /* Enable flexbox */
    justify-content: center; /* Center the content horizontally */
    margin-top: 20px; /* Add space below the header */
}

.banner {
    text-align: center; /* Center the content inside the banner */
    background-color: rgba(0, 0, 0, 0.5); /* Optional background for the banner */
    padding: 0px 0px; /* Adjust padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.8); /* Neon-like glow */
}

.banner img {
    max-width: 100%; /* Ensure the image is responsive */
    border-radius: 10px; /* Optional border-radius for the image */
    animation: float 5s ease-in-out infinite; /* Floating animation */
}

/* Floating WhatsApp Button */
.whatsapp-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensures it appears on top */
    animation: float 3s ease-in-out infinite; /* Floating animation */
}

.whatsapp-floating-button img {
    width: 50px;
    height: 50px;
}

/* Hover effect for the WhatsApp button */
.whatsapp-floating-button:hover {
    background-color: #128C7E; /* Darker green on hover */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
/* Contract Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: 'Times New Roman', Times, serif;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.rules-section {
  margin-top: 20px;
}

.rules-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.confirm-button, .cancel-button {
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.confirm-button {
  background-color: #28a745;
  color: white;
}

.cancel-button {
  background-color: #dc3545;
  color: white;
}
/* Rental Contract Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: #1e1e1e;
  margin: 5% auto;
  padding: 30px;
  border: 2px solid #ff4081;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 0 20px rgba(255, 64, 129, 0.5);
  position: relative;
  animation: slideIn 0.5s ease-out;
}

.close {
  color: #ff4081;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #f9a602;
}

.modal h2 {
  color: #f9a602;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #f9a602;
}

.legal-warning {
  background-color: rgba(255, 64, 129, 0.2);
  border-left: 4px solid #ff4081;
  padding: 10px;
  margin-bottom: 20px;
}

.legal-warning p {
  color: #ff4081;
  font-weight: bold;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #f9a602;
}

.form-group input {
  width: 100%;
  padding: 10px;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  color: white;
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: #ff4081;
  box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

.terms-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.terms-section h3 {
  color: #ff4081;
  margin-bottom: 15px;
}

.rules-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.rules-list li {
  margin-bottom: 10px;
  color: #ddd;
}

.legal-notice {
  background-color: rgba(31, 31, 31, 0.7);
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  border-left: 4px solid #f9a602;
}

.legal-notice h4 {
  color: #f9a602;
  margin-top: 0;
}

.legal-notice ul {
  margin-left: 20px;
}

.legal-notice li {
  margin-bottom: 8px;
  color: #ddd;
}

.agreement-check {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.agreement-check input {
  margin-right: 10px;
  min-width: 20px;
  height: 20px;
}

.agreement-check label {
  color: #ddd;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(255, 64, 129, 0.5);
}

.submit-button:hover {
  background-color: #f50057;
  box-shadow: 0 0 20px rgba(255, 64, 129, 0.8);
}

.submit-button:disabled {
  background-color: #444;
  cursor: not-allowed;
}


/* Responsive adjustments */

.signature-pad {
  border: 2px solid #ff0000;
  animation: pulseWarning 2s infinite;
}
@keyframes pulseWarning {
  0% { border-color: #ff0000; }
  50% { border-color: #ff4081; }
  100% { border-color: #ff0000; }
}
/* Developer Mode indicators */
.dev-mode-active {
    position: relative;
}

.dev-mode-active::before {
    content: "Developer Mode Active";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #ff5ec2;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 9999;
}

.dev-tools {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(30, 27, 41, 0.9);
    border: 2px solid #ff5ec2;
    padding: 15px;
    border-radius: 10px;
    z-index: 9998;
    max-width: 300px;
}

.dev-tools h3 {
    color: #ff5ec2;
    margin-top: 0;
}

.dev-tools button {
    background: #ff5ec2;
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}
@media (max-width: 768px) {
    /* Accounts Section - Tablet Optimization */
    .accounts {
        padding: 0 15px;
        margin-bottom: 30px;
        animation: sectionFadeIn 1s ease-out;
    }

    @keyframes sectionFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .accounts h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
        position: relative;
        padding-bottom: 10px;
        animation: titleGlow 3s infinite alternate;
    }

    @keyframes titleGlow {
        0% { 
            text-shadow: 0 0 8px #ff4081, 0 0 16px rgba(255, 64, 129, 0.7); 
        }
        100% { 
            text-shadow: 0 0 12px #ff4081, 0 0 24px rgba(255, 64, 129, 0.9), 
                        0 0 8px #f9a602;
        }
    }

    .accounts h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 25%;
        width: 50%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ff4081, #f9a602, #ff4081, transparent);
        animation: linePulse 4s infinite;
    }

    @keyframes linePulse {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }

    .account-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        perspective: 1000px;
    }

    .account-card {
        width: 100%;
        max-width: 400px;
        opacity: 0;
        transform: translateY(30px) rotateX(15deg);
        animation: cardRise 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    /* Staggered card animations */
    .account-card:nth-child(1) { animation-delay: 0.2s; }
    .account-card:nth-child(2) { animation-delay: 0.4s; }
    .account-card:nth-child(3) { animation-delay: 0.6s; }

    @keyframes cardRise {
        to {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
    }

    .account-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
   
        background-size: 400%;
        z-index: -1;
        border-radius: 12px;
        opacity: 0;
        transition: 0.5s;
        animation: borderGlow 3s linear infinite;
    }

    @keyframes borderGlow {
        0% { background-position: 0 0; }
        50% { background-position: 300% 0; }
        100% { background-position: 0 0; }
    }

    .account-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 25px rgba(255, 64, 129, 0.4),
                    0 0 30px rgba(249, 166, 2, 0.3);
    }

    .account-card:hover::before {
        opacity: 1;
        animation-play-state: running;
    }

    .account-card img {
        border: 1px solid rgba(255, 64, 129, 0.5);
        transition: all 0.4s ease;
        transform-style: preserve-3d;
    }

    .account-card:hover img {
        transform: translateZ(10px);
        box-shadow: 0 0 20px rgba(255, 64, 129, 0.6);
    }

    .price {
        font-size: 1.4rem;
        position: relative;
        display: inline-block;
    }

    .price::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #f9a602, #ff4081);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .account-card:hover .price::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* Button Enhancements */
    .account-card button {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

.whatsapp-floating-button img {
    width: 30px;
    height: auto;
}

    .account-card button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
                    transparent, rgba(255, 64, 129, 0.4), transparent);
        transition: 0.5s;
        z-index: -1;
    }

    .account-card button:hover::before {
        left: 100%;
    }

    /* Responsive Grid Fallback */
    @media (min-width: 600px) and (max-width: 768px) {
        .account-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
.whatsapp-floating-button img {
    width: 30px;
    height: auto;
}
        .account-card {
            max-width: none;
            margin: 0;
        }
    }
   #rentalContractModal .modal-content {
        width: 90%;
        margin: 10% auto;
        padding: 15px;
    }

    #rentalContractModal h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    #rentalContractModal .legal-warning {
        padding: 10px;
        font-size: 0.9rem;
    }

    #rentalContractModal .form-group {
        margin-bottom: 15px;
    }

    #rentalContractModal .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    #rentalContractModal .form-group input {
        width: 100%;
        padding: 8px;
        font-size: 0.9rem;
    }

    #rentalContractModal .terms-section {
        margin-top: 20px;
    }

    #rentalContractModal .terms-section h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    #rentalContractModal .rules-list {
        padding-left: 20px;
        font-size: 0.85rem;
    }

    #rentalContractModal .rules-list li {
        margin-bottom: 8px;
    }

    #rentalContractModal .legal-notice {
        font-size: 0.8rem;
        margin: 15px 0;
    }

    #rentalContractModal .legal-notice h4 {
        font-size: 1rem;
    }

    #rentalContractModal .legal-notice ul {
        padding-left: 20px;
    }

    #rentalContractModal .agreement-check {
        font-size: 0.85rem;
        margin: 20px 0;
    }

    #rentalContractModal .submit-button {
        padding: 10px;
        font-size: 1rem;
    }

    /* Make the close button more touch-friendly */
    #rentalContractModal .close {
        font-size: 28px;
        padding: 5px 10px;
    }
}







