body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f5f5f5;
}

main {
  flex: 1 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.card-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Custom Colors & Theme */
nav, .page-footer {
  background-color: #121212; /* Black */
  color: #FFD700; /* Gold */
}

nav .brand-logo {
    color: #FFD700; /* Gold */
    font-size: 1.5rem;
}

h2, h3, h4, h5 {
    color: #FFD700; /* Gold */
}

.divider {
    background-color: rgba(255, 215, 0, 0.5); /* Gold transparent */
}

.card.transparent {
    background-color: rgba(40, 40, 40, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.card .card-content p {
    color: #f5f5f5;
}

.price {
    color: #e53935; /* Red */
    font-weight: bold;
}

.negociate-price a {
    color: #4fc3f7; /* Light Blue */
    text-decoration: underline;
}

.gold-btn {
    background-color: #FFD700; /* Gold */
    color: #121212;
    font-weight: bold;
}

.gold-btn:hover {
    background-color: #ffec80;
}

.fixed-action-btn .whatsapp-green {
    background-color: #25D366; /* WhatsApp Green */
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    margin-top: 12px;
}

/* Sidenav */
.sidenav {
    background-color: #212121;
}

.sidenav li > a {
    color: #f5f5f5;
}
.sidenav li > a > i.material-icons {
    color: #FFD700;
}

/* Upload Page Styles */
.upload-form .input-field label {
    color: #FFD700;
}

.upload-form .input-field input[type=text]:focus + label,
.upload-form .input-field input[type=email]:focus + label,
.upload-form .input-field input[type=tel]:focus + label,
.upload-form .input-field textarea:focus + label {
    color: #FFD700;
}

.upload-form .input-field input,
.upload-form .input-field textarea {
    color: #f5f5f5;
    border-bottom: 1px solid #FFD700;
    box-shadow: 0 1px 0 0 #FFD700;
}

.upload-form .input-field input:focus,
.upload-form .input-field textarea:focus {
    border-bottom: 1px solid #ffec80 !important;
    box-shadow: 0 1px 0 0 #ffec80 !important;
}

.upload-form .file-field .btn {
    background-color: #FFD700;
    color: #121212;
}

.upload-form .file-field .file-path {
    color: #f5f5f5;
}

.upload-form p {
    color: #f5f5f5;
}

.upload-form [type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:before, [type="radio"].with-gap:checked+span:after {
    border: 2px solid #FFD700;
}

.upload-form [type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:after {
     background-color: #FFD700;
}

.upload-form .progress {
    background-color: #444;
}

.upload-form .progress .determinate {
    background-color: #FFD700;
}

#status-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}
#status-message.success {
    background-color: #2E7D32; /* Green */
    color: white;
}
#status-message.error {
    background-color: #c62828; /* Red */
    color: white;
}

.upload-form .helper-text {
    color: rgba(245, 245, 245, 0.7) !important;
}

.portfolio-container {
    padding: 20px 0;
}

.portfolio-scroll {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.portfolio-item {
    min-width: 300px;
    margin-right: 20px;
}

.portfolio-item .card {
    background: rgba(40, 40, 40, 0.7);
    margin: 0;
}

.portfolio-item .card-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn {
    background-color: #FFD700 !important;
}

.play-btn i {
    color: #121212;
}

.play-btn.playing {
    background-color: #ff4444 !important;
}

.portfolio-item .card-action {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.portfolio-item .card-action a {
    color: #FFD700 !important;
    margin-right: 0 !important;
}

.portfolio-item .card-action i {
    font-size: 24px;
}

/* Hide scrollbar but keep functionality */
.portfolio-scroll::-webkit-scrollbar {
    display: none;
}

/* YouTube Video Player Styles */
.video-player-container {
    margin: 40px 0;
    text-align: center;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.youtube-player {
    width: 100%;
    height: 250px;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 105, 180, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay:hover {
    opacity: 0.8;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-icon:hover {
    transform: scale(1.1);
}

.play-icon i {
    color: #121212;
    font-size: 40px;
}

/* Analytics Dashboard */
.analytics-dashboard {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #FFD700;
    font-size: 12px;
    min-width: 200px;
}

.analytics-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.analytics-item:last-child {
    margin-bottom: 0;
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 215, 0, 0.2);
}

/* Pricing Section */
#pricing-section {
    padding: 60px 0;
    background: rgba(40, 40, 40, 0.8);
    margin: 40px 0;
    border-radius: 12px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(40, 40, 40, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    max-width: 350px;
    text-align: left;
    position: relative;
}

.pricing-card.featured {
    border-color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #121212;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
}

.pricing-card h4 {
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: #e53935;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card li {
    color: #f5f5f5;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    color: #FFD700;
    position: absolute;
    left: 0;
}

.pricing-card button {
    width: 100%;
    margin-top: 20px;
}

/* Responsive pricing */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .youtube-player {
        height: 200px;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-icon i {
        font-size: 30px;
    }
    
    nav .brand-logo {
        font-size: 1.2rem;
    }
}