/* Hero Section */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(15, 15, 15, 0.6) 0%, rgba(45, 27, 27, 0.8) 70%, rgba(15, 15, 15, 0.95) 100%),
        linear-gradient(135deg, rgba(74, 44, 90, 0.2), rgba(201, 169, 97, 0.1));
    z-index: -1;
}

.hero-content {
    width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 8rem;
    align-items: center;
    min-height: 95vh;
    max-width: none;
}

.hero-text {
    animation: elegant-slide-in-left 1.5s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--warm-gold);
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-gold), transparent);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--light-text);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    text-indent: 0;
}

/* Unified Button System */
.glitter-btn-base {
    display: block;
    width: 100%;
    padding: 12px 0;
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
}

.glitter-btn-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.glitter-btn-base:hover::before {
    left: 0;
}

.glitter-btn-base:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Button */
.cta-button {
    padding: 20px 40px;
    font-size: 1.3rem;
    background: transparent;
    color: var(--warm-gold);
    border: 2px solid var(--warm-gold);
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: auto;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--warm-gold), var(--antique-gold));
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--dark-text);
    border-color: var(--warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hero-image {
    text-align: center;
    animation: elegant-slide-in-right 1.5s ease-out 0.3s both;
    position: relative;
}

.hero-character {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8)) sepia(10%);
    animation: subtle-sway 8s ease-in-out infinite;
    border-radius: 8px;
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--warm-gold);
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

/* Navigation Section */
.nav-section {
    padding: 3rem 0 4rem;
    background: 
        linear-gradient(135deg, var(--deep-burgundy) 0%, var(--dark-brown) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 169, 97, 0.03) 2px, rgba(201, 169, 97, 0.03) 4px);
    position: relative;
}

.nav-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: stretch;
}

.nav-card {
    background: linear-gradient(145deg, rgba(26, 22, 17, 0.95), rgba(45, 27, 27, 0.85));
    padding: 2.5rem 2rem 2rem;
    border-left: 6px solid var(--warm-gold);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        inset 0 1px 0 rgba(201, 169, 97, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nav-card:nth-child(2) {
    border-left-color: var(--muted-purple);
}

.nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        inset 0 1px 0 rgba(201, 169, 97, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    float: right;
    transition: all 0.3s ease;
    opacity: 0.8;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.nav-card:nth-child(1) .nav-icon::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a961'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.nav-card:nth-child(2) .nav-icon::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239d7ba6'%3E%3Cpath d='M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.84z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.nav-card:nth-child(3) .nav-icon::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a961'%3E%3Cpath d='M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 18H8v-2h4v2zm0-4H8v-2h4v2zm0-4H8V8h4v2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.nav-card img.nav-icon {
    display: none;
}

.nav-card:hover .nav-icon {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 6px 12px rgba(201, 169, 97, 0.4));
}

.nav-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--warm-gold);
    font-weight: 400;
    letter-spacing: 0.05em;
    clear: right;
}

.nav-card:nth-child(2) h3 {
    color: var(--muted-purple);
}

.nav-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.5;
    text-indent: 1em;
    text-align: justify;
    hyphens: auto;
    flex-grow: 1;
}

/* Navigation Link Buttons */
.nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    color: var(--warm-gold);
    border: 2px solid var(--warm-gold);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-align: center;
    margin-top: auto;
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--warm-gold), var(--antique-gold));
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-card:nth-child(2) .nav-link {
    color: var(--muted-purple);
    border-color: var(--muted-purple);
}

.nav-card:nth-child(2) .nav-link::before {
    background: linear-gradient(145deg, var(--muted-purple), var(--deep-purple));
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--dark-text);
    border-color: var(--warm-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.nav-card:nth-child(2) .nav-link:hover {
    color: var(--warm-white);
    border-color: var(--muted-purple);
}

/* Shop Section */
.shop-section {
    padding: 3rem 0 4rem;
    background: 
        linear-gradient(135deg, var(--rich-black) 0%, var(--deep-burgundy) 100%),
        radial-gradient(circle at 30% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    position: relative;
}

.shop-cards {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: none;
    margin: 3rem auto 0;
    padding: 0 2rem;
    perspective: 1000px;
    align-items: start;
}

.shop-card {
    background: linear-gradient(145deg, rgba(26, 22, 17, 0.9), rgba(45, 27, 27, 0.7));
    border: 1px solid var(--ornate-border);
    padding: 1.5rem 1.2rem 1.2rem;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    height: 100%;
}

.shop-card:first-child {
    transform: rotateY(2deg) scale(0.95);
}

.shop-card:first-child:hover {
    transform: rotateY(0deg) scale(0.95) translateY(-5px);
}

.shop-card.featured {
    border: 2px solid var(--warm-gold);
    background: 
        linear-gradient(145deg, rgba(201, 169, 97, 0.12), rgba(184, 148, 31, 0.08)),
        linear-gradient(135deg, rgba(26, 22, 17, 0.95), rgba(45, 27, 27, 0.85));
    transform: scale(1.02);
    box-shadow: 
        0 0 25px rgba(201, 169, 97, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    padding-top: 2.5rem;
}

.shop-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 
        0 0 35px rgba(201, 169, 97, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.6);
}

.shop-card.collector {
    border: 2px solid var(--muted-purple);
    background: 
        linear-gradient(145deg, rgba(157, 123, 166, 0.12), rgba(107, 71, 136, 0.08)),
        linear-gradient(135deg, rgba(26, 22, 17, 0.95), rgba(45, 27, 27, 0.85));
    transform: rotateY(-2deg) scale(0.98);
    box-shadow: 
        0 0 20px rgba(157, 123, 166, 0.25),
        0 12px 25px rgba(0, 0, 0, 0.4);
    z-index: 1;
    padding-top: 2.5rem;
}

.shop-card.collector:hover {
    transform: rotateY(0deg) scale(0.98) translateY(-8px);
    box-shadow: 
        0 0 30px rgba(157, 123, 166, 0.4),
        0 18px 35px rgba(0, 0, 0, 0.5);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #ff6b35, #e55a2b);
    color: white;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    border-radius: 15px;
}

.collector-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(145deg, var(--deep-purple), var(--muted-purple));
    color: var(--warm-white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 0 4px 0 8px;
}

.edition-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    filter: sepia(10%) brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.3);
}

.shop-card:hover .edition-image {
    filter: sepia(10%) brightness(1.1) contrast(1.2);
    transform: scale(1.02);
}

.shop-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.4);
}

.shop-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--warm-white);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.shop-card.featured .shop-header h3 {
    color: var(--warm-gold);
    font-size: 1.4rem;
}

.shop-card.collector .shop-header h3 {
    color: var(--muted-purple);
    font-size: 1.35rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--warm-gold);
    letter-spacing: 0.02em;
}

.shop-card.featured .price {
    font-size: 2.4rem;
    font-weight: 400;
}

.shop-card.collector .price {
    color: var(--muted-purple);
    font-size: 2.3rem;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

.features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.2rem;
    border-bottom: 1px dotted rgba(139, 115, 85, 0.2);
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--warm-gold);
    font-size: 0.8rem;
}

.shop-card.collector .features li::before {
    color: var(--muted-purple);
}

.features li.highlight {
    color: var(--warm-gold);
    font-weight: 600;
}

.shop-card.collector .features li.highlight {
    color: var(--muted-purple);
}

/* Shop Button Styles */
.shop-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    color: var(--warm-gold);
    border: 2px solid var(--warm-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    text-align: center;
    margin-top: auto;
    text-decoration: none;
}

.shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--warm-gold), var(--antique-gold));
    transition: left 0.3s ease;
    z-index: -1;
}

.shop-btn.premium {
    color: #ff6b35;
    border-color: #ff6b35;
    font-weight: 700;
}

.shop-btn.premium::before {
    background: linear-gradient(145deg, #ff6b35, #e55a2b);
}

.shop-btn.collector {
    color: var(--muted-purple);
    border-color: var(--muted-purple);
}

.shop-btn.collector::before {
    background: linear-gradient(145deg, var(--muted-purple), var(--deep-purple));
}

.shop-btn:hover::before {
    left: 0;
}

.shop-btn:hover {
    color: var(--dark-text);
    border-color: var(--warm-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.shop-btn.premium:hover {
    color: white;
    border-color: #ff6b35;
}

.shop-btn.collector:hover {
    color: var(--warm-white);
    border-color: var(--muted-purple);
}

/* Tools Section */
.tools-section {
    padding: 3rem 0 4rem;
    background: 
        linear-gradient(135deg, var(--dark-brown) 0%, var(--deep-burgundy) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(74, 44, 90, 0.02) 20px, rgba(74, 44, 90, 0.02) 40px);
    position: relative;
}

.tools-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--muted-purple) 30%, var(--warm-gold) 70%, transparent);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 2rem;
}

.tool-card {
    background: 
        linear-gradient(145deg, rgba(26, 22, 17, 0.95), rgba(45, 27, 27, 0.85)),
        radial-gradient(circle at bottom right, rgba(74, 44, 90, 0.1), transparent);
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--warm-gold);
    border-bottom: 3px solid var(--warm-gold);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 1px 0 rgba(201, 169, 97, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.3);
    transform: skewY(-1deg);
    height: 200px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.tool-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--warm-gold), var(--antique-gold));
    transition: left 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.tool-card:hover::after {
    left: 0;
}

.tool-card:nth-child(2) {
    border-top-color: var(--muted-purple);
    border-bottom-color: var(--muted-purple);
    transform: skewY(1deg);
    background: 
        linear-gradient(145deg, rgba(26, 22, 17, 0.95), rgba(45, 27, 27, 0.85)),
        radial-gradient(circle at top left, rgba(201, 169, 97, 0.1), transparent);
}

.tool-card:nth-child(2)::after {
    background: linear-gradient(145deg, var(--muted-purple), var(--deep-purple));
}

.tool-card:nth-child(3) {
    transform: skewY(-0.5deg);
}

.tool-card:hover {
    transform: skewY(0deg) translateY(-10px);
    box-shadow: 
        inset 0 1px 0 rgba(201, 169, 97, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.4);
}

.tool-icon {
    display: none;
}

.tool-card::before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.tool-card:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a961'%3E%3Cpath d='M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5z' fill-opacity='0.1' stroke='%23c9a961' stroke-width='1'/%3E%3Ccircle cx='7' cy='7' r='1.2' fill='%23c9a961'/%3E%3Ccircle cx='7' cy='12' r='1.2' fill='%23c9a961'/%3E%3Ccircle cx='7' cy='17' r='1.2' fill='%23c9a961'/%3E%3Ccircle cx='17' cy='7' r='1.2' fill='%23c9a961'/%3E%3Ccircle cx='17' cy='12' r='1.2' fill='%23c9a961'/%3E%3Ccircle cx='17' cy='17' r='1.2' fill='%23c9a961'/%3E%3C/svg%3E");
}

.tool-card:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239d7ba6'%3E%3Ccircle cx='12' cy='6' r='3' fill='%239d7ba6'/%3E%3Cpath d='M12 10c-3.31 0-6 2.69-6 6v2c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2c0-3.31-2.69-6-6-6z' fill='%239d7ba6'/%3E%3Cpath d='M16 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 2c-1.1 0-2-.9-2-2 0-.74.4-1.38 1-1.73V5c0-.55.45-1 1-1s1 .45 1 1v1.27c.6.35 1 .99 1 1.73 0 1.1-.9 2-2 2z' fill='%239d7ba6' opacity='0.6'/%3E%3C/svg%3E");
}

.tool-card:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a961'%3E%3Cpath d='M6.5 20C4.57 20 3 18.43 3 16.5C3 14.62 4.5 13.09 6.36 13C6.13 12.37 6 11.7 6 11C6 7.69 8.69 5 12 5C15.31 5 18 7.69 18 11C18 11.34 17.97 11.67 17.91 12C19.71 12.19 21 13.69 21 15.5C21 17.43 19.43 19 17.5 19H7' fill='%23c9a961'/%3E%3Cpath d='M8 16l2 2 2-2M12 18V14' stroke='%23c9a961' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3Ccircle cx='4' cy='8' r='1' fill='%23c9a961' opacity='0.6'/%3E%3Ccircle cx='20' cy='9' r='0.8' fill='%23c9a961' opacity='0.6'/%3E%3Ccircle cx='19' cy='6' r='0.6' fill='%23c9a961' opacity='0.4'/%3E%3C/svg%3E");
}

.tool-card:hover::before {
    transform: scale(1.15);
    filter: drop-shadow(0 12px 30px rgba(201, 169, 97, 0.5));
}

.tool-card:nth-child(2):hover::before {
    filter: drop-shadow(0 12px 30px rgba(157, 123, 166, 0.5));
}

.tool-card h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--warm-gold);
    font-weight: 400;
    letter-spacing: 0.05em;
    z-index: 1;
}

.tool-card:nth-child(2) h3 {
    color: var(--muted-purple);
}

/* Community Section */
.community-section {
    padding: 4rem 0 5rem;
    background: 
        linear-gradient(135deg, var(--rich-black) 0%, var(--deep-burgundy) 100%),
        radial-gradient(ellipse at center bottom, rgba(74, 44, 90, 0.15) 0%, transparent 70%);
    position: relative;
    overflow: visible;
    min-height: auto;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted-purple), var(--warm-gold), var(--muted-purple), transparent);
}

.community-banner {
    position: relative;
    width: 95%;
    max-width: none;
    margin: 0 auto 4rem;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 100px rgba(74, 44, 90, 0.1);
    border-top: 2px solid var(--muted-purple);
    border-bottom: 2px solid var(--warm-gold);
}

.community-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) sepia(15%) contrast(1.2);
}

.community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(74, 44, 90, 0.8) 0%, 
            rgba(15, 15, 15, 0.4) 40%, 
            rgba(201, 169, 97, 0.6) 100%),
        radial-gradient(circle at center, transparent 30%, rgba(15, 15, 15, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.community-banner-content {
    max-width: 100%;
    width: 100%;
}

.community-banner-content h3 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--warm-gold);
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.community-banner-content p {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    color: var(--light-text);
    max-width: 85%;
    margin: 0 auto;
    text-indent: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.community-links {
    display: flex;
    gap: 8rem;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.discord-link, .reddit-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 4rem;
    transition: all 0.4s ease;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    min-width: 280px;
    flex: 1;
    max-width: 400px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.discord-link {
    background: transparent;
    color: #5865f2;
    border-color: #5865f2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.discord-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #5865f2, #4752c4);
    transition: left 0.3s ease;
    z-index: -1;
}

.discord-link:hover::before {
    left: 0;
}

.discord-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.4);
    border-color: #5865f2;
    color: white;
}

.reddit-link {
    background: transparent;
    color: #ff4500;
    border-color: #ff4500;
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

.reddit-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ff4500, #cc3600);
    transition: left 0.3s ease;
    z-index: -1;
}

.reddit-link:hover::before {
    left: 0;
}

.reddit-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.4);
    border-color: #ff4500;
    color: white;
}

.social-icon {
    width: 60px;
    height: 60px;
    filter: brightness(1.1);
    object-fit: contain;
    z-index: 1;
}

.community-links a {
    color: inherit;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: 98%;
    }
    
    .nav-cards,
    .shop-cards,
    .tools-grid,
    .community-banner,
    .community-links,
    .hero-content {
        width: 98%;
    }
    
    .community-links {
        gap: 4rem;
        padding: 0 1rem;
    }
    
    .community-banner-content p {
        max-width: 90%;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        width: 95%;
        padding: 2rem 1rem;
        min-height: 75vh;
    }
    
    .nav-cards {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .shop-cards {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 95%;
    }
    
    .tool-card {
        transform: none !important;
        padding: 2rem 1.5rem;
        height: 180px;
    }
    
    .community-links {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 95%;
    }
    
    .community-banner {
        width: 95%;
        height: 350px;
    }
    
    .community-banner-content p {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .nav-section,
    .shop-section,
    .tools-section,
    .community-section {
        padding: 1.5rem 0 2rem;
    }
    
    .hero-content {
        min-height: 65vh;
        padding: 1rem;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .nav-cards {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-card {
        padding: 1.2rem !important;
        max-width: 100%;
        transform: none !important;
        text-align: left;
    }
    
    .nav-icon {
        float: none;
        margin: 0 auto 0.8rem auto;
        display: block;
        width: 50px;
        height: 50px;
    }
    
    .nav-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .nav-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-indent: 0;
        text-align: left;
    }
    
    .nav-link {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .shop-cards {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .shop-card {
        padding: 1.2rem !important;
        max-width: 100%;
        transform: none !important;
    }
    
    .edition-image {
        height: 100px;
        margin-bottom: 0.8rem;
    }
    
    .shop-header h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .features {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .features li {
        padding: 0.3rem 0;
    }
    
    .shop-btn {
        padding: 8px 0;
        font-size: 0.8rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .tool-card {
        height: 120px;
        padding: 1rem !important;
        transform: none !important;
    }
    
    .tool-card::before {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .tool-card h3 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .community-banner {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .community-banner-content h3 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .community-banner-content p {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        max-width: 98%;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .discord-link,
    .reddit-link {
        padding: 1.5rem 1rem;
        min-width: auto;
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .nav-cards,
    .shop-cards,
    .tools-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .shop-card,
    .shop-card.featured,
    .shop-card.collector {
        transform: none !important;
        padding: 1.2rem !important;
    }
    
    .community-banner {
        height: 220px;
    }
    
    .community-banner-content h3 {
        font-size: clamp(1.3rem, 5vw, 2rem);
        margin-bottom: 0.8rem;
    }
    
    .community-banner-content p {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        max-width: 98%;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .nav-section,
    .shop-section,
    .tools-section,
    .community-section {
        padding: 1rem 0 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .nav-cards,
    .shop-cards,
    .tools-grid {
        grid-template-columns: 1fr !important;
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .nav-card,
    .shop-card {
        padding: 1rem !important;
        transform: none !important;
    }
    
    .edition-image {
        height: 80px;
        margin-bottom: 0.6rem;
    }
    
    .shop-header h3 {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .features {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .shop-btn {
        padding: 6px 0;
        font-size: 0.75rem;
    }
    
    .tool-card {
        height: 100px;
        padding: 0.8rem !important;
        transform: none !important;
    }
    
    .tool-card::before {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .tool-card h3 {
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    .community-banner {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .community-banner-content {
        padding: 1rem 0.5rem;
    }
    
    .community-banner-content h3 {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .community-banner-content p {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
        max-width: 100%;
        padding: 0 0.5rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .discord-link,
    .reddit-link {
        padding: 1rem 0.8rem;
        width: 100%;
        max-width: 250px;
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .community-links {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .community-banner {
        height: 160px;
    }
    
    .community-banner-content h3 {
        font-size: clamp(1rem, 5vw, 1.5rem);
        margin-bottom: 0.3rem;
    }
    
    .community-banner-content p {
        font-size: clamp(0.7rem, 3vw, 0.8rem);
        line-height: 1.2;
        padding: 0 0.3rem;
    }
}

.container {
    max-width: none; 
    width: 95%; 
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: gentle-bounce 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-text {
    color: var(--light-text);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--warm-gold);
    border-bottom: 2px solid var(--warm-gold);
    transform: rotate(45deg);
    opacity: 0.9;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        width: 16px;
        height: 16px;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-section {
    height: calc(98vh - 85px);
}

.hero-content {
    height: calc(98vh - 85px);
}

/* In @media (max-width: 1024px) */
.hero-content {
    height: calc(98vh - 85px);
}

/* In @media (max-width: 768px) */
.hero-content {
    height: calc(98vh - 75px);
}
