/* Global Styles */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #252525;
    --text-primary: #e0e0e0;
    --text-secondary: #aaaaaa;
    --accent-primary: #007bff;
    --accent-secondary: #0056b3;
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --discord-color: #5865F2;
    --discord-hover: #4752C4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-secondary);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 800px;
}

.content-box {
    text-align: center;
    padding: 3rem;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-primary), #00c6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { text-shadow: 0 0 5px rgba(0, 123, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 123, 255, 0.8); }
    100% { text-shadow: 0 0 5px rgba(0, 123, 255, 0.5); }
}

.description {
    margin-bottom: 1.8rem;
}

.description p {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta {
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-primary);
    color: white;
    transform: translateY(-5px);
}

/* Shop Now Button */
.shop-now-container {
    margin-bottom: 1.5rem;
}

.btn-shop {
    background-color: var(--discord-color);
    color: white;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 6px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    animation: pulse-light 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-shop i {
    font-size: 1.2rem;
}

.btn-shop:hover {
    background-color: var(--discord-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.7);
    color: white;
}

@keyframes pulse-light {
    0% { box-shadow: 0 4px 20px rgba(88, 101, 242, 0.5); }
    50% { box-shadow: 0 4px 25px rgba(88, 101, 242, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(88, 101, 242, 0.5); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-box {
        padding: 2rem 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .description p {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .btn-shop {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 992px) {
    .title {
        font-size: 3rem;
    }
    
    .description p {
        font-size: 1.3rem;
    }
    
    .btn-shop {
        font-size: 1.2rem;
        padding: 12px 36px;
    }
    
    .social-links {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem;
    }
    
    .content-box {
        padding: 2rem 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .description p {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
    
    .btn-shop {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem 0.5rem;
    }
    
    .content-box {
        padding: 1.5rem 1rem;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .description {
        margin-bottom: 1.5rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .btn-shop {
        font-size: 0.9rem;
        padding: 10px 24px;
    }
    
    .btn-shop i {
        font-size: 1.2rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: 1.8rem;
    }
    
    .btn-shop {
        padding: 8px 20px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Home page styles with orange and yellow theme */

/* Main content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(128, 0, 128, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(147, 0, 211, 0.15) 0%, transparent 50%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-box {
  text-align: center;
  padding: 2rem;
}

.title {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(45deg, var(--theme-primary), var(--theme-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(255, 149, 0, 0.15);
}

.description {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.description p {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--theme-accent);
  margin-top: 1rem;
}

/* Shop now button with orange/yellow gradient */
.shop-now-container {
  margin: 2.5rem 0;
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, var(--theme-primary), var(--theme-secondary));
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
  background: linear-gradient(45deg, var(--theme-hover), var(--theme-primary));
}

.btn-shop:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 149, 0, 0.2);
}

/* Social links with theme colors */
.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--theme-primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid var(--theme-primary);
}

.social-links a:hover {
  background-color: var(--theme-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 149, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
  .title {
    font-size: 3rem;
  }
  
  .description p {
    font-size: 1.25rem;
  }
  
  .btn-shop {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2.5rem;
  }
  
  .description p {
    font-size: 1.125rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-links a {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}

/* Animation for content */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.title, .description, .shop-now-container, .social-links {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Enhanced Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
    .content-box {
        padding: 50px;
        max-width: 90%;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .content-box {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .shop-now-container {
        margin-top: 30px;
    }
    
    .btn-shop {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .social-links {
        margin-top: 30px;
    }
    
    .social-links a {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 30px 20px;
        margin-top: -60px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .description {
        margin: 15px 0;
    }
    
    .description p {
        font-size: 0.95rem;
    }
    
    .subtitle {
        font-size: 0.85rem;
        margin-top: 10px;
    }
}

/* Fix landscape mode on mobile */
@media (max-height: 480px) and (orientation: landscape) {
    .content-box {
        margin-top: 0;
        padding: 20px;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .description {
        margin: 10px 0;
    }
    
    .shop-now-container {
        margin-top: 15px;
    }
    
    .social-links {
        margin-top: 15px;
    }
}
