:root {
    --bg-color: #000000;
    --card-bg: #121212;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-primary: #a855f7; /* Purple */
    --accent-secondary: #ec4899; /* Pink */
    --accent-tertiary: #3b82f6; /* Blue */
    --gradient-main: linear-gradient(135deg, #a855f7, #ec4899, #3b82f6);
    --gradient-glow: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(236, 72, 153, 0.5));
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 85vh;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 600;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Phone Frame */
.phone-frame {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #222;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 0 2px #333, 0 30px 60px rgba(0,0,0,0.5), 0 0 80px rgba(168, 85, 247, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.screen-content {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.screen-img.active {
    opacity: 1;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-visual::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--gradient-main);
    filter: blur(60px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    top: 10%;
    left: 10%;
}

.feature-img {
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Why Boorza */
.why-boorza {
    background: linear-gradient(180deg, var(--bg-color) 0%, #1a0b2e 50%, #2e0b25 100%);
    position: relative;
    overflow: hidden;
}

.why-boorza::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-list li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.benefit-list li:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

/* Campus Life */
.campus-life {
    background: linear-gradient(180deg, #2e0b25 0%, #0f0f13 100%);
}

.campus-text {
    text-align: center;
    font-size: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0f0f13;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 960px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-item, .feature-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feature-visual {
        width: 100%;
    }
    
    .nav-links {
        display: none;
    }

    .navbar .container {
        justify-content: center;
    }
}

/* --- NEW STYLES FOR REDESIGN --- */

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-store {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 20px;
    text-decoration: none;
    color: #fff;
    min-width: 140px;
    transition: all 0.3s ease;
}

.btn-store:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
}

.store-text-small {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.store-text-large {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

/* What Is Section */
.what-is {
    background: var(--bg-color);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.column-item {
    background: var(--card-bg);
    padding: 40px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.column-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.column-item .icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
}

.column-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.column-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Feed Section */
.feed-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, #1a0b2e 100%);
    padding-top: 60px;
    padding-bottom: 120px;
}

.feed-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.feed-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.feed-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-content {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.4;
}

.card-share {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.share-icon {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile Adjustments for new sections */
@media (max-width: 768px) {
    .three-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .feed-card {
        padding: 30px 20px;
    }
    
    .card-content {
        font-size: 1.4rem;
    }
}
