/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at top right, #1c1525 0%, #110b19 40%, #08050e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

ul {
    list-style: none;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(28, 21, 37, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    background: rgba(17, 11, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 8px;
}

.logo i {
    color: #d52327;
    font-size: 20px;
}

.text-cine {
    color: #ffffff;
}

.text-dhara {
    color: #d52327;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
    flex: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #b0aac0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: #b0aac0;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: #d52327;
    color: #fff;
    border: 1px solid #d52327;
    box-shadow: 0 4px 15px rgba(213, 35, 39, 0.4);
}

.btn-primary:hover {
    background: #b51c20;
    box-shadow: 0 6px 20px rgba(213, 35, 39, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Alert Box */
.alert-box {
    background: rgba(213, 35, 39, 0.1);
    border: 1px solid rgba(213, 35, 39, 0.3);
    border-radius: 12px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #ffcccc;
}

.alert-box p {
    margin-bottom: 5px;
    font-size: 15px;
    color: inherit;
}

.alert-box p:last-child {
    margin-bottom: 0;
}

/* Grid Section */
.grid-section {
    margin-bottom: 60px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-block {
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.category-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.category-block h2 i {
    color: #d52327;
}

/* Tags */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-list li a {
    display: block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 14px;
    color: #b0aac0;
}

.tag-list li a:hover {
    background: #d52327;
    color: #ffffff;
    border-color: #d52327;
    transform: scale(1.05);
}

/* Info Section */
.info-section {
    padding: 40px;
    margin-bottom: 40px;
}

.info-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #d52327;
}

.info-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.info-content p {
    color: #b0aac0;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-list li {
    margin-bottom: 12px;
    color: #b0aac0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: #00e676;
    margin-top: 4px;
}

.feature-list li strong {
    color: #ffffff;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background: #08050e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6a647d;
    font-size: 14px;
}

footer p {
    margin-bottom: 5px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-section {
        padding: 25px;
    }
}
