* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #2c1a1d, #4a3128);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 2rem 0;
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.content {
    text-align: center;
    margin-top: 4rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.time-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
}

.time-box span {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.newsletter {
    margin: 4rem 0;
}

.newsletter input {
    padding: 1rem;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-right: 1rem;
}

.newsletter button {
    padding: 1rem 2rem;
    background: #d4af37;
    border: none;
    border-radius: 5px;
    color: #2c1a1d;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #ffd700;
}

#message {
    margin-top: 1rem;
    color: #d4af37;
}
.launched-message {
    font-size: 3rem;
    color: #d4af37;
    animation: pulse 1s infinite;
}

/* Add these new styles */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card:after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(212, 175, 55, 0.1));
    transition: bottom 0.3s ease;
}

.feature-card:hover:after {
    bottom: 0;
}

.newsletter input {
    transition: all 0.3s ease;
}

.newsletter input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* New portal-specific styles */
.portal-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.portal-card {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.portal-card:hover {
    transform: translateY(-10px);
}

.portal-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.portal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portal-card:hover .portal-overlay {
    opacity: 1;
}

.portal-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.portal-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portal-btn:hover {
    background: #d4af37;
    color: #2c1a1d;
    transform: scale(1.05);
}

.portal-description {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 900px) {
    .portal-card {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .portal-card {
        height: 350px;
    }
    
    .portal-card i {
        font-size: 3rem;
    }
}

@keyframes portal-particle {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.portal-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    animation: portal-particle 1s ease-out forwards;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes tick {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.logo {
    animation: float 3s ease-in-out infinite;
}

.time-box span {
    transition: all 0.3s ease;
}

.time-box:hover span {
    color: #ffd700;
    transform: scale(1.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2c1a1d;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/* Firefox scrollbar */
html {
    scrollbar-color: #d4af37 #2c1a1d;
    scrollbar-width: thin;
}

/* Particle canvas positioning */
#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Marketplace Styles */
.marketplace-header {
    margin-top: 2rem;
}

.search-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-bar {
    position: relative;
    width: 400px;
    max-width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d4af37;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
}

.search-bar i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
}

.filters select {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d4af37;
    border-radius: 30px;
    color: white;
    cursor: pointer;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.listing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-5px);
}

.listing-image {
    position: relative;
    height: 200px;
    background: #2c1a1d;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.listing-badge[data-condition="new"] {
    background: #d4af37;
    color: #2c1a1d;
}

.listing-badge[data-condition="used"] {
    background: #4a3128;
    color: white;
}

.listing-details {
    padding: 1.5rem;
}

.listing-price {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.listing-button {
    width: 100%;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.listing-button:hover {
    background: #d4af37;
    color: #2c1a1d;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

.slide-in {
    animation: slideIn 1s ease-out;
}

@media (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
    }
    
    .newsletter input {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .newsletter button {
        width: 100%;
    }
}
.filters select {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d4af37;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    text-align: center;
}

/* Custom dropdown arrow */
.filters {
    position: relative;
}

.filters select::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #d4af37;
}

.filters select:hover {
    background: rgba(212, 175, 55, 0.2);
}

.filters select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Ensure dropdown options match theme */
.filters select option {
    background: #2c1a1d;
    color: white;
    padding: 10px;
    border: none;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(44, 26, 29, 0.9); /* Dark background matching the site */
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 1rem 2rem;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1000;
}
.notification.show {
    opacity: 1;
    transform: translateY(0);
}
.notification.success {
    border-color: #28a745;
    color: #28a745;
}
.notification.error {
    border-color: #e74c3c;
    color: #e74c3c;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d4af37;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease;
}

.form-grid textarea {
    grid-column: span 2;
    min-height: 100px;
    resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid textarea {
        grid-column: span 1;
    }
}
/* Newsletter Section */
.launch-header {
    position: relative;
    cursor: pointer;
    text-align: center;
    margin: 2rem 0;
    transition: all 0.4s ease;
}

.launch-header h2 {
    font-size: 2.2rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #d4af37;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.launch-header:hover h2 {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.dropdown-arrow {
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.header-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 120%;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.launch-header:hover .header-glow {
    opacity: 0.6;
}

/* Form Animation */
#notifyForm {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

#notifyForm.expanded {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    margin: 2rem 0;
}

.glow-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, transparent 70%);
    transition: width 0.3s ease, height 0.3s ease;
}

.glow-button:hover::after {
    width: 150%;
    height: 150%;
}

/* Form Grid Updates */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-grid input,
.form-grid textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #d4af37;
    font-size: 1.1rem;
    padding: 1.2rem;
    border-radius: 10px;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .launch-header h2 {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }
}

.notification.error {
    background: rgba(231, 76, 60, 0.9);
    border-color: #e74c3c;
    color: white;
}

.notification.success {
    background: rgba(46, 204, 113, 0.9);
    border-color: #2ecc71;
    color: white;
}

.notification {
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}